2015-04-03 17:28:01 -07:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, libjpeg, libpng12, libX11, zlib }:
|
2015-03-05 15:44:14 -08:00
|
|
|
|
2015-03-22 05:33:10 -07:00
|
|
|
let version = "3.5.0.31"; in
|
2015-03-05 15:44:14 -08:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libxcomp-${version}";
|
|
|
|
|
2015-03-16 16:35:24 -07:00
|
|
|
src = fetchurl {
|
2015-06-01 16:44:39 -07:00
|
|
|
sha256 = "1hi3xrjzr37zs72djw3k7gj6mn2bsihfw1iysl8l0i85jl6sdfkd";
|
|
|
|
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
2015-03-05 15:44:14 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "NX compression library";
|
2015-03-16 16:35:24 -07:00
|
|
|
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.gpl2;
|
2015-03-05 15:44:14 -08:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
2015-06-17 10:36:06 -07:00
|
|
|
buildInputs = [ libjpeg libpng12 libX11 zlib ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-03-05 15:44:14 -08:00
|
|
|
|
2015-04-03 17:28:01 -07:00
|
|
|
preAutoreconf = ''
|
2015-03-05 15:44:14 -08:00
|
|
|
cd nxcomp/
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir $out/lib
|
|
|
|
cp libXcomp.so* $out/lib
|
|
|
|
mkdir $out/include
|
|
|
|
cp NX.h $out/include
|
|
|
|
'';
|
|
|
|
}
|