1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00

Add nxproxy 3.5.0-2015-02-18

Thanks to Christoph-Simon Senjak <c s s at u x u l dot d e>
This commit is contained in:
Tobias Geerinckx-Rice 2015-03-06 01:03:30 +01:00
parent 47712a21bd
commit 2a93bee7f3
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchgit, autoconf, libxcomp }:
let version = "3.5.0-2015-02-18"; in
stdenv.mkDerivation {
name = "nxproxy-${version}";
src = fetchgit {
url = git://code.x2go.org/nx-libs.git;
rev = "2b2a02f93f552a38de8f72a971fa3f3ff42b3298";
sha256 = "11n7dv1cn9icjgyxmsbac115vmbaar47cmp8k76vd516f2x41dw9";
};
meta = with stdenv.lib; {
description = "NX compression proxy";
homepage = "http://code.x2go.org/gitweb?p=nx-libs.git;a=summary";
license = with licenses; gpl2;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ autoconf libxcomp ];
preConfigure = ''
cd nxproxy/
autoconf
'';
installTargets = [ "install.bin" ];
}

View file

@ -2090,6 +2090,8 @@ let
nylon = callPackage ../tools/networking/nylon { };
nxproxy = callPackage ../tools/admin/nxproxy { };
nzbget = callPackage ../tools/networking/nzbget { };
oathToolkit = callPackage ../tools/security/oath-toolkit { };