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