2018-03-29 14:30:14 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libxcomp }:
|
2015-03-06 00:03:30 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-06 00:03:30 +00:00
|
|
|
name = "nxproxy-${version}";
|
2018-03-29 14:30:14 +00:00
|
|
|
version = "3.5.99.16";
|
2015-03-06 00:03:30 +00:00
|
|
|
|
2015-03-16 23:36:02 +00:00
|
|
|
src = fetchurl {
|
2018-03-29 14:30:14 +00:00
|
|
|
sha256 = "1m3z9w3h6qpgk265xf030w7lcs181jgw2cdyzshb7l97mn1f7hh2";
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
2015-03-06 00:03:30 +00:00
|
|
|
};
|
|
|
|
|
2015-06-17 17:36:06 +00:00
|
|
|
buildInputs = [ libxcomp ];
|
2018-03-29 14:30:14 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2015-03-06 00:03:30 +00:00
|
|
|
|
2015-04-04 00:28:01 +00:00
|
|
|
preAutoreconf = ''
|
2015-03-06 00:03:30 +00:00
|
|
|
cd nxproxy/
|
2018-03-29 14:30:14 +00:00
|
|
|
sed -i 's|-L\$(top_srcdir)/../nxcomp/src/.libs ||' src/Makefile.am
|
2015-03-06 00:03:30 +00:00
|
|
|
'';
|
|
|
|
|
2015-03-16 23:36:02 +00:00
|
|
|
makeFlags = [ "exec_prefix=$(out)" ];
|
2015-06-01 23:44:39 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "NX compression proxy";
|
2017-08-01 20:03:30 +00: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-06 00:03:30 +00:00
|
|
|
}
|