summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2017-11-21 19:44:41 -0400
committerDavid McFarland <corngood@gmail.com>2017-11-22 12:33:32 -0400
commit916d1a409c34a4cb091f510836ede25ff68881a5 (patch)
treed37d21d0e6d0887660de0f635323c1d8735d73bd /pkgs/applications/networking/remote
parent4434843d9cfb53ab2ddfa1c5139247cbe5c1bfda (diff)
downloadnixlib-916d1a409c34a4cb091f510836ede25ff68881a5.tar
nixlib-916d1a409c34a4cb091f510836ede25ff68881a5.tar.gz
nixlib-916d1a409c34a4cb091f510836ede25ff68881a5.tar.bz2
nixlib-916d1a409c34a4cb091f510836ede25ff68881a5.tar.lz
nixlib-916d1a409c34a4cb091f510836ede25ff68881a5.tar.xz
nixlib-916d1a409c34a4cb091f510836ede25ff68881a5.tar.zst
nixlib-916d1a409c34a4cb091f510836ede25ff68881a5.zip
rdesktop: enable credssp w/ libgssglue
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/rdesktop/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/remote/rdesktop/default.nix b/pkgs/applications/networking/remote/rdesktop/default.nix
index 4179cc3058e8..4caa9ae63f75 100644
--- a/pkgs/applications/networking/remote/rdesktop/default.nix
+++ b/pkgs/applications/networking/remote/rdesktop/default.nix
@@ -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"
   ];