otpw: fix build with libxcrypt

This commit is contained in:
Franz Pletz
2022-10-09 18:10:40 +02:00
committed by Martin Weinelt
parent eee1cec722
commit 55a576305e
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pam }:
{ lib, stdenv, fetchurl, pam, libxcrypt }:
stdenv.mkDerivation rec {
pname = "otpw";
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
cp *.8 $out/share/man/man8
'';
buildInputs = [ pam ];
buildInputs = [ pam libxcrypt ];
hardeningDisable = [ "stackprotector" ];