lix/tests/binary-patching.nix
Eelco Dolstra 3d38a49840 * In the download size indication, take binary patches into account.
Hopefully this doesn't slow things down too much.
2010-11-17 17:32:25 +00:00

16 lines
288 B
Nix

{ version }:
with import ./config.nix;
mkDerivation {
name = "foo-${toString version}";
builder = builtins.toFile "builder.sh"
''
mkdir $out
seq 1 1000000 > $out/foo
${if version == 2 then ''
seq 1000000 1010000 >> $out/foo
'' else ""}
'';
}