pounce: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-30 01:47:06 +02:00 committed by Martin Weinelt
parent 126319f7b0
commit 897f5b25fb
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,4 +1,4 @@
{ lib, stdenv, libressl, fetchzip, pkg-config }:
{ lib, stdenv, libressl, fetchzip, pkg-config, libxcrypt }:
stdenv.mkDerivation rec {
pname = "pounce";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "17vmbfr7ika6kmq9jqa3rpd4cr71arapav7hlmggnj7a9yw5b9mg";
};
buildInputs = [ libressl ];
buildInputs = [ libressl libxcrypt ];
nativeBuildInputs = [ pkg-config ];