nixpkgs/pkgs/applications/networking/remote/rdesktop/default.nix

29 lines
719 B
Nix
Raw Normal View History

2017-11-22 00:44:41 +01:00
{stdenv, fetchurl, openssl, libX11, libgssglue, pkgconfig} :
stdenv.mkDerivation (rec {
pname = "rdesktop";
2015-03-02 16:48:09 +01:00
version = "1.8.3";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
2015-03-02 16:48:09 +01:00
sha256 = "1r7c1rjmw2xzq8fw0scyb453gy9z19774z1z8ldmzzsfndb03cl8";
};
2017-11-22 00:44:41 +01:00
nativeBuildInputs = [pkgconfig];
buildInputs = [openssl libX11 libgssglue];
2014-02-20 12:27:38 +01:00
configureFlags = [
2017-05-17 20:53:36 +02:00
"--with-ipv6"
"--with-openssl=${openssl.dev}"
2014-02-20 12:27:38 +01:00
"--disable-smartcard"
];
meta = {
description = "Open source client for Windows Terminal Services";
homepage = http://www.rdesktop.org/;
platforms = stdenv.lib.platforms.linux;
2015-03-02 16:48:09 +01:00
license = stdenv.lib.licenses.gpl2;
};
})