summary refs log tree commit diff
path: root/pkgs/tools/package-management/rpm/default.nix
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2016-05-01 18:08:58 +0000
committerDan Peebles <pumpkin@me.com>2016-05-01 18:09:30 +0000
commit5dff3c4b68e163ae73a279b24fae77bb0c31ffad (patch)
treec2ffd232d633e294892c16d844028a9540ed1709 /pkgs/tools/package-management/rpm/default.nix
parent594bdfc74d0ac304d704eda9965fa66c6b06c1b9 (diff)
downloadnixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.tar
nixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.tar.gz
nixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.tar.bz2
nixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.tar.lz
nixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.tar.xz
nixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.tar.zst
nixpkgs-5dff3c4b68e163ae73a279b24fae77bb0c31ffad.zip
rpm: stop build from trying to create /var/tmp, which breaks in sandboxed builds
Diffstat (limited to 'pkgs/tools/package-management/rpm/default.nix')
-rw-r--r--pkgs/tools/package-management/rpm/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix
index 6c2c9a350ad..d9cf24f6e51 100644
--- a/pkgs/tools/package-management/rpm/default.nix
+++ b/pkgs/tools/package-management/rpm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig }:
+{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig, autoreconfHook }:
 
 stdenv.mkDerivation rec {
   name = "rpm-4.12.0";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "18hk47hc755nslvb7xkq4jb095z7va0nlcyxdpxayc4lmb8mq3bp";
   };
 
-  buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig ];
+  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 nss db bzip2 libarchive ];
@@ -22,6 +22,8 @@ stdenv.mkDerivation rec {
   postPatch = ''
     # For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here
     substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable}
+
+    substituteInPlace Makefile.am --replace '@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp' ""
   '';
 
   configureFlags = "--with-external-db --with-lua --enable-python --localstatedir=/var --sharedstatedir=/com";