diff options
Diffstat (limited to 'corepkgs/nar')
-rw-r--r-- | corepkgs/nar/nar.sh | 2 | ||||
-rw-r--r-- | corepkgs/nar/unnar.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/corepkgs/nar/nar.sh b/corepkgs/nar/nar.sh index 6ffcf63224a8..3dbeed02952f 100644 --- a/corepkgs/nar/nar.sh +++ b/corepkgs/nar/nar.sh @@ -1,3 +1,3 @@ #! /bin/sh -/tmp/nix/bin/nix --dump --file "$path" > $out || exit 1 +/tmp/nix/bin/nix --dump --file "$path" | bzip2 > $out || exit 1 diff --git a/corepkgs/nar/unnar.sh b/corepkgs/nar/unnar.sh index e6a3f3c1fe19..01b6a3ebe475 100644 --- a/corepkgs/nar/unnar.sh +++ b/corepkgs/nar/unnar.sh @@ -1,3 +1,3 @@ #! /bin/sh -/tmp/nix/bin/nix --restore "$out" < $nar || exit 1 +bunzip2 < $nar | /tmp/nix/bin/nix --restore "$out" || exit 1 |