Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkgs/os-specific/linux/multipath-tools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/tools/networking/stun/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ stdenv.mkDerivation rec {

preBuild = ''
tar Jxvf ${srcManpages} debian/manpages
gzip -9 debian/manpages/stun.1
gzip -9 debian/manpages/stund.8
gzip -9n debian/manpages/stun.1
gzip -9n debian/manpages/stund.8
'';

installPhase = ''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/networking/zerotierone/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stdenv.mkDerivation rec {

mkdir -p $man/share/man/man8
for cmd in zerotier-one.8 zerotier-cli.1 zerotier-idtool.1; do
cat doc/$cmd | gzip -9 > $man/share/man/man8/$cmd.gz
cat doc/$cmd | gzip -9n > $man/share/man/man8/$cmd.gz
done
'';

Expand Down