aboutsummaryrefslogtreecommitdiff
path: root/tests/impure-derivations.nix
blob: 2fed56fe7be92aebe8c4244388b901beb71c9968 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
with import ./config.nix;

rec {

  impure = mkDerivation {
    name = "impure";
    outputs = [ "out" "stuff" ];
    buildCommand =
      ''
        echo impure
        x=$(< $TEST_ROOT/counter)
        mkdir $out $stuff
        echo $x > $out/n
        ln -s $out/n $stuff/bla
        printf $((x + 1)) > $TEST_ROOT/counter
      '';
    __impure = true;
    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
    impureEnvVars = [ "TEST_ROOT" ];
  };

  impureOnImpure = mkDerivation {
    name = "impure-on-impure";
    buildCommand =
      ''
        echo impure-on-impure
        x=$(< ${impure}/n)
        mkdir $out
        printf X$x > $out/n
        ln -s ${impure.stuff} $out/symlink
        ln -s $out $out/self
      '';
    __impure = true;
    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
  };

  # This is not allowed.
  inputAddressed = mkDerivation {
    name = "input-addressed";
    buildCommand =
      ''
        cat ${impure} > $out
      '';
  };

  contentAddressed = mkDerivation {
    name = "content-addressed";
    buildCommand =
      ''
        echo content-addressed
        x=$(< ${impureOnImpure}/n)
        printf ''${x:0:1} > $out
      '';
    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
    outputHash = "sha256-eBYxcgkuWuiqs4cKNgKwkb3vY/HR0vVsJnqe8itJGcQ=";
  };

  inputAddressedAfterCA = mkDerivation {
    name = "input-addressed-after-ca";
    buildCommand =
      ''
        cat ${contentAddressed} > $out
      '';
  };
}