mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
zfs: fix build w/gibc-2.32
This commit is contained in:
parent
0258849e61
commit
bafe7eb14d
1 changed files with 6 additions and 7 deletions
|
@ -9,6 +9,7 @@
|
|||
, nfs-utils
|
||||
, gawk, gnugrep, gnused, systemd
|
||||
, smartmontools, sysstat, sudo
|
||||
, pkgconfig
|
||||
|
||||
# Kernel dependencies
|
||||
, kernel ? null
|
||||
|
@ -94,17 +95,14 @@ let
|
|||
substituteInPlace ./cmd/vdev_id/vdev_id \
|
||||
--replace "PATH=/bin:/sbin:/usr/bin:/usr/sbin" \
|
||||
"PATH=${makeBinPath [ coreutils gawk gnused gnugrep systemd ]}"
|
||||
'' + optionalString stdenv.hostPlatform.isMusl ''
|
||||
substituteInPlace config/user-libtirpc.m4 \
|
||||
--replace /usr/include/tirpc ${libtirpc}/include/tirpc
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook nukeReferences ]
|
||||
++ optionals buildKernel (kernel.moduleBuildDependencies ++ [ perl ]);
|
||||
buildInputs = optionals buildUser [ zlib libuuid attr ]
|
||||
++ optionals buildKernel (kernel.moduleBuildDependencies ++ [ perl ])
|
||||
++ optional buildUser pkgconfig;
|
||||
buildInputs = optionals buildUser [ zlib libuuid attr libtirpc ]
|
||||
++ optional buildUser openssl
|
||||
++ optional (buildUser && enablePython) python3
|
||||
++ optional stdenv.hostPlatform.isMusl libtirpc;
|
||||
++ optional (buildUser && enablePython) python3;
|
||||
|
||||
# for zdb to get the rpath to libgcc_s, needed for pthread_cancel to work
|
||||
NIX_CFLAGS_LINK = "-lgcc_s";
|
||||
|
@ -113,6 +111,7 @@ let
|
|||
|
||||
configureFlags = [
|
||||
"--with-config=${configFile}"
|
||||
"--with-tirpc=1"
|
||||
(withFeatureAs (buildUser && enablePython) "python" python3.interpreter)
|
||||
] ++ optionals buildUser [
|
||||
"--with-dracutdir=$(out)/lib/dracut"
|
||||
|
|
Loading…
Reference in a new issue