summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2008-01-28 12:28:23 +0000
committerAndres Löh <mail@andres-loeh.de>2008-01-28 12:28:23 +0000
commit3479c907abccb6a5e2c38359a6cfc1b62c238fe8 (patch)
tree2cbc90790ca3f10802badea1e954af846d595ffd /pkgs/applications/networking/remote
parent746d65bbdb79349dbb1ace4a0d438240a95df2e0 (diff)
downloadnixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.tar
nixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.tar.gz
nixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.tar.bz2
nixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.tar.lz
nixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.tar.xz
nixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.tar.zst
nixpkgs-3479c907abccb6a5e2c38359a6cfc1b62c238fe8.zip
* added rdesktop
svn path=/nixpkgs/trunk/; revision=10304
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/rdesktop/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/networking/remote/rdesktop/default.nix b/pkgs/applications/networking/remote/rdesktop/default.nix
new file mode 100644
index 00000000000..c81160ae57c
--- /dev/null
+++ b/pkgs/applications/networking/remote/rdesktop/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, openssl, libX11} :
+
+stdenv.mkDerivation (rec {
+  pname = "rdesktop";
+  version = "1.5.0";
+  name = "${pname}-${version}";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/${pname}/${name}.tar.gz";
+    sha256 = "5ead17c3d29cb1028aeca485ee7a8c65694c1b02a1b7014c3da920b265a438aa";
+  };
+
+  buildInputs = [openssl libX11];
+
+  configureFlags = [ "--with-openssl=${openssl}" ];
+
+  meta = {
+    description = "rdesktop is an open source client for Windows Terminal Services";
+  };
+})