aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/fod-failing.nix
blob: 37c04fe12f8b3b0b5eb2fdd08a4ee72b703e6a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
with import ./config.nix;
rec {
  x1 = mkDerivation {
    name = "x1";
    builder = builtins.toFile "builder.sh"
      ''
        echo $name > $out
      '';
    outputHashMode = "recursive";
    outputHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
  };
  x2 = mkDerivation {
    name = "x2";
    builder = builtins.toFile "builder.sh"
      ''
        echo $name > $out
      '';
    outputHashMode = "recursive";
    outputHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
  };
  x3 = mkDerivation {
    name = "x3";
    builder = builtins.toFile "builder.sh"
      ''
        echo $name > $out
      '';
    outputHashMode = "recursive";
    outputHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
  };
  x4 = mkDerivation {
    name = "x4";
    inherit x2 x3;
    builder = builtins.toFile "builder.sh"
      ''
        echo $x2 $x3
        exit 1
      '';
  };
}