2015-04-04 02:28:01 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, libxcomp }:
|
2015-03-06 01:03:30 +01:00
|
|
|
|
2015-03-22 13:33:10 +01:00
|
|
|
let version = "3.5.0.31"; in
|
2015-03-06 01:03:30 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nxproxy-${version}";
|
|
|
|
|
2015-03-17 00:36:02 +01:00
|
|
|
src = fetchurl {
|
2015-06-02 01:44:39 +02:00
|
|
|
sha256 = "1hi3xrjzr37zs72djw3k7gj6mn2bsihfw1iysl8l0i85jl6sdfkd";
|
|
|
|
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
2015-03-06 01:03:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "NX compression proxy";
|
2015-03-17 00:36:02 +01:00
|
|
|
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2;
|
2015-03-06 01:03:30 +01:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
2015-06-17 14:03:16 +02:00
|
|
|
patches = [
|
|
|
|
./0660_nxcomp_fix-negotiation-in-stage-10-error.full+lite.patch
|
|
|
|
];
|
|
|
|
|
2015-04-04 02:28:01 +02:00
|
|
|
buildInputs = [ autoreconfHook libxcomp ];
|
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/
|
|
|
|
'';
|
|
|
|
|
2015-03-17 00:36:02 +01:00
|
|
|
makeFlags = [ "exec_prefix=$(out)" ];
|
2015-06-02 01:44:39 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-06 01:03:30 +01:00
|
|
|
}
|