about summary refs log tree commit diff
path: root/tests/binary-patching.nix
blob: 781bd76eba60f2be1b2d852b1ee0a6ea0f4c4b4e (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 ''
        echo bla >> $out/foo
      '' else ""}
    '';
}