2016-07-09 14:13:27 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, libjpeg, libpng, libX11, zlib }:
|
2015-03-05 23:44:14 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-05 23:44:14 +00:00
|
|
|
name = "libxcomp-${version}";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "3.5.0.32";
|
2015-03-05 23:44:14 +00:00
|
|
|
|
2015-03-16 23:35:24 +00:00
|
|
|
src = fetchurl {
|
2015-07-09 01:39:50 +01:00
|
|
|
sha256 = "02n5bdc1jsq999agb4w6dmdj5l2wlln2lka84qz6rpswwc59zaxm";
|
2015-06-02 00:44:39 +01:00
|
|
|
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
2015-03-05 23:44:14 +00:00
|
|
|
};
|
|
|
|
|
2016-07-09 14:13:27 +01:00
|
|
|
buildInputs = [ libjpeg libpng libX11 zlib ];
|
2015-06-17 18:36:06 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-03-05 23:44:14 +00:00
|
|
|
|
2015-04-04 01:28:01 +01:00
|
|
|
preAutoreconf = ''
|
2015-03-05 23:44:14 +00:00
|
|
|
cd nxcomp/
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "NX compression library";
|
|
|
|
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
2015-03-05 23:44:14 +00:00
|
|
|
}
|