summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-29 17:08:16 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:34 +0200
commitf51c3fd469714434e2bd2f194f211479d4777eaf (patch)
tree3e7c010e4310e11da576d666b58cfc8d9265bb58
parentce67773d12f7fde7796565705f6f0acff6d58ce0 (diff)
downloadnixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.tar
nixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.tar.gz
nixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.tar.bz2
nixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.tar.lz
nixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.tar.xz
nixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.tar.zst
nixpkgs-f51c3fd469714434e2bd2f194f211479d4777eaf.zip
ldapvi: fix build with libxcrypt
-rw-r--r--pkgs/tools/misc/ldapvi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/ldapvi/default.nix b/pkgs/tools/misc/ldapvi/default.nix
index f8862cfa567..dd0d34f50fe 100644
--- a/pkgs/tools/misc/ldapvi/default.nix
+++ b/pkgs/tools/misc/ldapvi/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchgit, openldap, openssl, popt, glib, ncurses, readline, pkg-config, cyrus_sasl, autoconf, automake }:
+{ lib, stdenv, fetchgit, openldap, openssl, popt, glib, libxcrypt, ncurses, readline, pkg-config, cyrus_sasl, autoconf, automake }:
 
 stdenv.mkDerivation {
   pname = "ldapvi";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
   };
 
   nativeBuildInputs = [ pkg-config autoconf automake ];
-  buildInputs = [ openldap openssl popt glib ncurses readline cyrus_sasl ];
+  buildInputs = [ openldap openssl popt glib libxcrypt ncurses readline cyrus_sasl ];
 
   preConfigure = ''
     cd ldapvi