summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorStéphan Kochen <git@stephank.nl>2021-05-18 16:33:26 +0200
committerGitHub <noreply@github.com>2021-05-18 10:33:26 -0400
commit4bb1c4677d97eff6408bd9c0be58e32f075d6aff (patch)
treedf8741f8570721c919c85b35c41ff5b79b6b78b2 /pkgs/applications/networking/remote
parentaaaab99d8c190ff86174f043422571bd457e3b40 (diff)
downloadnixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.tar
nixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.tar.gz
nixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.tar.bz2
nixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.tar.lz
nixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.tar.xz
nixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.tar.zst
nixpkgs-4bb1c4677d97eff6408bd9c0be58e32f075d6aff.zip
rdesktop: fix darwin build (#123498)
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/rdesktop/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/networking/remote/rdesktop/default.nix b/pkgs/applications/networking/remote/rdesktop/default.nix
index acf1d7cc2d2..e2ee9428ad2 100644
--- a/pkgs/applications/networking/remote/rdesktop/default.nix
+++ b/pkgs/applications/networking/remote/rdesktop/default.nix
@@ -1,4 +1,5 @@
-{lib, stdenv, fetchFromGitHub, openssl, libX11, krb5, libXcursor, libtasn1, nettle, gnutls, pkg-config, autoreconfHook
+{ lib, stdenv, fetchFromGitHub, openssl, libX11, krb5, libXcursor, libtasn1
+, nettle, gnutls, pkg-config, autoreconfHook, libiconv
 , enableCredssp ? (!stdenv.isDarwin)
 } :
 
@@ -15,7 +16,8 @@ stdenv.mkDerivation (rec {
 
   nativeBuildInputs = [pkg-config autoreconfHook];
   buildInputs = [openssl libX11 libXcursor libtasn1 nettle gnutls]
-    ++ lib.optional enableCredssp krb5;
+    ++ lib.optional enableCredssp krb5
+    ++ lib.optional stdenv.isDarwin libiconv;
 
   configureFlags = [
     "--with-ipv6"