rpm: Fix to get raw binutils for headers

This commit is contained in:
John Ericson 2017-08-30 13:39:37 -04:00
parent ce359d49fb
commit b298916442

View File

@ -13,8 +13,13 @@ stdenv.mkDerivation rec {
buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig autoreconfHook ];
# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements
propagatedBuildInputs = [ popt elfutils nss db bzip2 libarchive binutils ];
# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as
# linkage requirements
#
# Binutils.binutils for headers
propagatedBuildInputs = [
popt elfutils nss db bzip2 libarchive binutils binutils.binutils
];
NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss";