about summary refs log tree commit diff
path: root/pkgs/servers/dante
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2022-09-29 17:06:12 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:33 +0200
commit71dad513b387f047fe88f4f3036d1409ce6f1a9e (patch)
treed3d0168c1a683ed6561a7e5e2c920cffeefbfb80 /pkgs/servers/dante
parentd438cee6a6dc5eb7dd0c09bc4da5a40089aea2d0 (diff)
dante: fix build with libxcrypt
Diffstat (limited to 'pkgs/servers/dante')
-rw-r--r--pkgs/servers/dante/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/servers/dante/default.nix b/pkgs/servers/dante/default.nix
index dd5967a2407b8..742ee2a0e684c 100644
--- a/pkgs/servers/dante/default.nix
+++ b/pkgs/servers/dante/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv, fetchurl, fetchpatch, pam, libkrb5, cyrus_sasl, miniupnpc, autoreconfHook }:
+{ lib, stdenv, fetchurl, fetchpatch, autoreconfHook
+, pam, libkrb5, cyrus_sasl, miniupnpc, libxcrypt }:
 
 stdenv.mkDerivation rec {
   pname = "dante";
@@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = lib.optional stdenv.hostPlatform.isMips64 autoreconfHook;
-  buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc ];
+  buildInputs = [ pam libkrb5 cyrus_sasl miniupnpc libxcrypt ];
 
   configureFlags = if !stdenv.isDarwin
     then [ "--with-libc=libc.so.6" ]