2018-03-29 15:30:08 +01:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, 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}";
|
2018-03-29 15:30:08 +01:00
|
|
|
version = "3.5.99.16";
|
2015-03-05 23:44:14 +00:00
|
|
|
|
2015-03-16 23:35:24 +00:00
|
|
|
src = fetchurl {
|
2018-03-29 15:30:08 +01:00
|
|
|
sha256 = "1m3z9w3h6qpgk265xf030w7lcs181jgw2cdyzshb7l97mn1f7hh2";
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://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 ];
|
2018-03-29 15:30:08 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
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/
|
2018-03-29 15:30:08 +01:00
|
|
|
sed -i 's|/src/.libs/libXcomp.a|/src/.libs/libXcomp.la|' test/Makefile.am
|
2015-03-05 23:44:14 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "NX compression library";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://wiki.x2go.org/doku.php/wiki:libs:nx-libs;
|
2016-01-24 19:31:44 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2015-03-05 23:44:14 +00:00
|
|
|
}
|