nixpkgs/pkgs/tools/admin/nxproxy/default.nix
Tobias Geerinckx-Rice 98e7674e88 nxproxy, libxcomp: nxlibs 3.5.0.{31 -> 32}
Removes the need for patching (for now).
2015-07-09 02:41:26 +02:00

32 lines
785 B
Nix

{ stdenv, fetchurl, autoreconfHook, libxcomp }:
let version = "3.5.0.32"; in
stdenv.mkDerivation {
name = "nxproxy-${version}";
src = fetchurl {
sha256 = "02n5bdc1jsq999agb4w6dmdj5l2wlln2lka84qz6rpswwc59zaxm";
url = "http://code.x2go.org/releases/source/nx-libs/nx-libs-${version}-lite.tar.gz";
};
meta = with stdenv.lib; {
inherit version;
description = "NX compression proxy";
homepage = "http://wiki.x2go.org/doku.php/wiki:libs:nx-libs";
license = licenses.gpl2;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ libxcomp ];
nativeBuildInputs = [ autoreconfHook ];
preAutoreconf = ''
cd nxproxy/
'';
makeFlags = [ "exec_prefix=$(out)" ];
enableParallelBuilding = true;
}