mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
dbench: fix build w/glibc-2.32
This commit is contained in:
parent
23e870d828
commit
73277d313e
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchgit, autoconf, popt, zlib }:
|
{ stdenv, fetchgit, autoconf, popt, zlib, rpcsvc-proto, libtirpc }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "dbench-2013-01-01";
|
name = "dbench-2013-01-01";
|
||||||
@ -9,7 +9,10 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "16lcbwmmx8z5i73k3dnf54yffrpx7ql3y9k3cpkss9dcyxb1p83i";
|
sha256 = "16lcbwmmx8z5i73k3dnf54yffrpx7ql3y9k3cpkss9dcyxb1p83i";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf popt zlib ];
|
nativeBuildInputs = [ autoconf rpcsvc-proto ];
|
||||||
|
buildInputs = [ popt zlib libtirpc ];
|
||||||
|
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
||||||
|
NIX_LDFLAGS = [ "-ltirpc" ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# patch has been also sent upstream and might be included in future versions
|
# patch has been also sent upstream and might be included in future versions
|
||||||
|
Loading…
Reference in New Issue
Block a user