2015-04-03 17:28:01 -07:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, libxcomp }:
|
2015-03-05 16:03:30 -08:00
|
|
|
|
2015-07-08 17:39:50 -07:00
|
|
|
let version = "3.5.0.32"; in
|
2015-03-05 16:03:30 -08:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nxproxy-${version}";
|
|
|
|
|
2015-03-16 16:36:02 -07:00
|
|
|
src = fetchurl {
|
2015-07-08 17:39:50 -07:00
|
|
|
sha256 = "02n5bdc1jsq999agb4w6dmdj5l2wlln2lka84qz6rpswwc59zaxm";
|
2015-06-01 16:44:39 -07:00
|
|
|
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
|
2015-03-05 16:03:30 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-07-08 17:39:50 -07:00
|
|
|
inherit version;
|
2015-03-05 16:03:30 -08:00
|
|
|
description = "NX compression proxy";
|
2015-03-16 16:36:02 -07:00
|
|
|
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.gpl2;
|
2015-11-17 12:29:29 -08:00
|
|
|
platforms = platforms.linux;
|
2015-03-05 16:03:30 -08:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
2015-06-17 10:36:06 -07:00
|
|
|
buildInputs = [ libxcomp ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2015-03-05 16:03:30 -08:00
|
|
|
|
2015-04-03 17:28:01 -07:00
|
|
|
preAutoreconf = ''
|
2015-03-05 16:03:30 -08:00
|
|
|
cd nxproxy/
|
|
|
|
'';
|
|
|
|
|
2015-03-16 16:36:02 -07:00
|
|
|
makeFlags = [ "exec_prefix=$(out)" ];
|
2015-06-01 16:44:39 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2015-03-05 16:03:30 -08:00
|
|
|
}
|