1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

rdesktop: enable credssp w/ libgssglue

This commit is contained in:
David McFarland 2017-11-21 19:44:41 -04:00
parent 4434843d9c
commit 916d1a409c

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, openssl, libX11} :
{stdenv, fetchurl, openssl, libX11, libgssglue, pkgconfig} :
stdenv.mkDerivation (rec {
pname = "rdesktop";
@ -10,12 +10,12 @@ stdenv.mkDerivation (rec {
sha256 = "1r7c1rjmw2xzq8fw0scyb453gy9z19774z1z8ldmzzsfndb03cl8";
};
buildInputs = [openssl libX11];
nativeBuildInputs = [pkgconfig];
buildInputs = [openssl libX11 libgssglue];
configureFlags = [
"--with-ipv6"
"--with-openssl=${openssl.dev}"
"--disable-credssp"
"--disable-smartcard"
];