diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-08-01T20·42-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-08-01T20·42-0400 |
commit | 46f852cda013b818f113c7905f020131a44f2340 (patch) | |
tree | b0a7b33f8b3c370a18da777a189a7de010b16055 /corepkgs/unpack-channel.nix | |
parent | afa7e0187815d89c8af93fa9c1081bf67ab0f10e (diff) |
Use a GNU tar flag to shut up warnings about implausibly old timestamp
Diffstat (limited to 'corepkgs/unpack-channel.nix')
-rw-r--r-- | corepkgs/unpack-channel.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/unpack-channel.nix b/corepkgs/unpack-channel.nix index b26bece30eae..bbc54c7d1e0d 100644 --- a/corepkgs/unpack-channel.nix +++ b/corepkgs/unpack-channel.nix @@ -6,7 +6,7 @@ let '' mkdir $out cd $out - ${bzip2} -d < $src | ${tar} xf - + ${bzip2} -d < $src | ${tar} xf - --warning=no-timestamp mv * $out/$channelName ''; |