forked from mirrors/nixpkgs
glusterfs: fix build w/glibc-2.32
This commit is contained in:
parent
9dbd6a782a
commit
e0030dff15
|
@ -2,7 +2,7 @@
|
||||||
autoconf, automake, libtool, pkgconfig, zlib, libaio, libxml2, acl, sqlite,
|
autoconf, automake, libtool, pkgconfig, zlib, libaio, libxml2, acl, sqlite,
|
||||||
liburcu, attr, makeWrapper, coreutils, gnused, gnugrep, which,
|
liburcu, attr, makeWrapper, coreutils, gnused, gnugrep, which,
|
||||||
openssh, gawk, findutils, utillinux, lvm2, btrfs-progs, e2fsprogs, xfsprogs, systemd,
|
openssh, gawk, findutils, utillinux, lvm2, btrfs-progs, e2fsprogs, xfsprogs, systemd,
|
||||||
rsync, glibc
|
rsync, glibc, rpcsvc-proto, libtirpc
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
s =
|
s =
|
||||||
|
@ -24,7 +24,7 @@ let
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
fuse bison flex_2_5_35 openssl ncurses readline
|
fuse bison flex_2_5_35 openssl ncurses readline
|
||||||
autoconf automake libtool pkgconfig zlib libaio libxml2
|
autoconf automake libtool pkgconfig zlib libaio libxml2
|
||||||
acl sqlite liburcu attr makeWrapper utillinux
|
acl sqlite liburcu attr makeWrapper utillinux libtirpc
|
||||||
(python3.withPackages (pkgs: [
|
(python3.withPackages (pkgs: [
|
||||||
pkgs.flask
|
pkgs.flask
|
||||||
pkgs.prettytable
|
pkgs.prettytable
|
||||||
|
@ -100,6 +100,8 @@ stdenv.mkDerivation
|
||||||
''--localstatedir=/var''
|
''--localstatedir=/var''
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ rpcsvc-proto ];
|
||||||
|
|
||||||
makeFlags = [ "DESTDIR=$(out)" ];
|
makeFlags = [ "DESTDIR=$(out)" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
Loading…
Reference in a new issue