zerotierone: gzip -9 -> gzip -9n

Note that it does not seem to make a difference to `nix-build --check`.
This commit is contained in:
Joachim Fasting 2016-12-19 14:34:53 +01:00
parent 6758d157d2
commit 8246a845b4
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -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
'';