1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

tsm-client: fix build with libxcrypt

After libcrypt support got dropped from `glibc`,
`libxcrypt` needs to be added to packages that still require it.

References:
https://github.com/NixOS/nixpkgs/pull/181764
ff30c899d8
This commit is contained in:
Yarny0 2022-10-30 18:02:03 +01:00
parent 412b9917ce
commit db63f9cb66

View file

@ -5,6 +5,7 @@
, fetchurl
, autoPatchelfHook
, rpmextract
, libxcrypt
, openssl
, zlib
, lvm2 # LVM image backup and restore functions (optional)
@ -119,6 +120,7 @@ let
rpmextract
];
buildInputs = [
libxcrypt
openssl
stdenv.cc.cc
zlib