about summary refs log tree commit diff
path: root/pkgs/tools/admin/nxproxy
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-03-06 01:03:30 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-03-06 03:48:40 +0100
commit2a93bee7f32c6eabea918ec99251015e5b0b4f16 (patch)
treea525b4785415eefd5d610339c6c371281cdfa9c9 /pkgs/tools/admin/nxproxy
parent47712a21bdef19984055980a924d27b32ff6979c (diff)
downloadnixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.tar
nixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.tar.gz
nixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.tar.bz2
nixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.tar.lz
nixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.tar.xz
nixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.tar.zst
nixlib-2a93bee7f32c6eabea918ec99251015e5b0b4f16.zip
Add nxproxy 3.5.0-2015-02-18
Thanks to Christoph-Simon Senjak <c s s at u x u l dot d e>
Diffstat (limited to 'pkgs/tools/admin/nxproxy')
-rw-r--r--pkgs/tools/admin/nxproxy/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/admin/nxproxy/default.nix b/pkgs/tools/admin/nxproxy/default.nix
new file mode 100644
index 000000000000..67d07d6eb3b1
--- /dev/null
+++ b/pkgs/tools/admin/nxproxy/default.nix
@@ -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" ];
+}