summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2022-09-30 01:47:20 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:39 +0200
commit29392852362839e48459f6225997c3609c37f598 (patch)
treeb0137f8185ef32de816fbebf9f91ca9ed320b819
parent897f5b25fb35a340bc7b65243fc5de45a3e84109 (diff)
downloadnixpkgs-29392852362839e48459f6225997c3609c37f598.tar
nixpkgs-29392852362839e48459f6225997c3609c37f598.tar.gz
nixpkgs-29392852362839e48459f6225997c3609c37f598.tar.bz2
nixpkgs-29392852362839e48459f6225997c3609c37f598.tar.lz
nixpkgs-29392852362839e48459f6225997c3609c37f598.tar.xz
nixpkgs-29392852362839e48459f6225997c3609c37f598.tar.zst
nixpkgs-29392852362839e48459f6225997c3609c37f598.zip
uwsgi: fix build with libxcrypt
-rw-r--r--pkgs/servers/uwsgi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix
index d24c482a889..2dc2c3230a8 100644
--- a/pkgs/servers/uwsgi/default.nix
+++ b/pkgs/servers/uwsgi/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, nixosTests, lib, fetchurl, pkg-config, jansson, pcre
+{ stdenv, nixosTests, lib, fetchurl, pkg-config, jansson, pcre, libxcrypt
 # plugins: list of strings, eg. [ "python2" "python3" ]
 , plugins ? []
 , pam, withPAM ? stdenv.isLinux
@@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ python3 pkg-config ];
 
-  buildInputs =  [ jansson pcre ]
+  buildInputs =  [ jansson pcre libxcrypt ]
               ++ lib.optional withPAM pam
               ++ lib.optional withSystemd systemd
               ++ lib.optional withCap libcap