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:
parent
47712a21bd
commit
2a93bee7f3
29
pkgs/tools/admin/nxproxy/default.nix
Normal file
29
pkgs/tools/admin/nxproxy/default.nix
Normal 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" ];
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue