diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-09-02T11·32+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-09-02T11·32+0200 |
commit | ac1b75413821c9ebaf317fb3fe1c695599e93818 (patch) | |
tree | 6286d2d5e4dda16093340ea13ba361c303a0b11b | |
parent | c28dfc030587cb5a4ccdc71e5f55e708a9aa901d (diff) |
Lower xz compression level
Fixes #84.
-rw-r--r-- | corepkgs/nar.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/nar.nix b/corepkgs/nar.nix index c3db19d0d3f1..04be17fb0ce2 100644 --- a/corepkgs/nar.nix +++ b/corepkgs/nar.nix @@ -8,7 +8,7 @@ let if [ $compressionType = xz ]; then ext=.xz - compressor="| ${xz} -9" + compressor="| ${xz} -7" elif [ $compressionType = bzip2 ]; then ext=.bz2 compressor="| ${bzip2}" |