multipath-tools: ensure gzip does not capture timestamp

gzip is originally called as 'gzip -9 -c'

This is a port of
https://github.com/NixOS/nixpkgs/pull/2281/commits/a8e7ddd1dfaae4b3ce97fdefe4614a3e31c04501

Note that it does not seem to make a difference to `nix-build --check`.
This commit is contained in:
Joachim Fasting
2016-12-20 15:31:55 +01:00
parent 3e92b56be3
commit 6758d157d2
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
' libmultipath/defaults.h
sed -i -e 's,\$(DESTDIR)/\(usr/\)\?,$(prefix)/,g' \
kpartx/Makefile libmpathpersist/Makefile
sed -i -e "s,GZIP = .*, GZIP = gzip -9n -c," \
Makefile.inc
'';
nativeBuildInputs = [ gzip ];