2008-01-28 13:28:23 +01:00
|
|
|
{stdenv, fetchurl, openssl, libX11} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
pname = "rdesktop";
|
2014-02-20 12:27:38 +01:00
|
|
|
version = "1.8.1";
|
2008-01-28 13:28:23 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
|
2014-02-20 12:27:38 +01:00
|
|
|
sha256 = "0il248cdsxvwjsl4bswf27ld9r1a7d48jf6bycr86kf3i55q7k3n";
|
2008-01-28 13:28:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [openssl libX11];
|
|
|
|
|
2014-02-20 12:27:38 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl=${openssl}"
|
|
|
|
"--disable-credssp"
|
|
|
|
"--disable-smartcard"
|
|
|
|
];
|
2008-01-28 13:28:23 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "rdesktop is an open source client for Windows Terminal Services";
|
|
|
|
};
|
|
|
|
})
|