about summary refs log tree commit diff
path: root/tests/binary-patching.nix
blob: afa0a0fb3f84584b920433a594d519a429c6a997 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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 ""}
    '';
}