nixpkgs/pkgs/applications/networking/remote/rdesktop/default.nix
Lluís Batlle i Rossell 8997cac785 Adding a patch that brings the windows key to rdesktop
Taken from upstream, will be on next release.
2014-10-23 09:46:52 +02:00

29 lines
701 B
Nix

{stdenv, fetchurl, openssl, libX11} :
stdenv.mkDerivation (rec {
pname = "rdesktop";
version = "1.8.2";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
sha256 = "0y0s0qjfsflp4drcn75ykx6as7mn13092bcvlp2ibhilkpa27gzv";
};
patches = [ ./enable_windows_key.patch ];
buildInputs = [openssl libX11];
configureFlags = [
"--with-openssl=${openssl}"
"--disable-credssp"
"--disable-smartcard"
];
meta = {
description = "Open source client for Windows Terminal Services";
homepage = http://www.rdesktop.org/;
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2;
};
})