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:
parent
412b9917ce
commit
db63f9cb66
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue