1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

* In the download size indication, take binary patches into account.

Hopefully this doesn't slow things down too much.
This commit is contained in:
Eelco Dolstra 2010-11-17 17:32:25 +00:00
parent f69626ed3e
commit 3d38a49840
3 changed files with 168 additions and 145 deletions

View file

@ -9,7 +9,7 @@ mkDerivation {
mkdir $out
seq 1 1000000 > $out/foo
${if version == 2 then ''
echo bla >> $out/foo
seq 1000000 1010000 >> $out/foo
'' else ""}
'';
}