aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/non-eval-fail-bad-drvPath.nix
blob: 23639bc54651b8b95ccb7d21c60f3479a802bc88 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let
  package = {
    type = "derivation";
    name = "cachix-1.7.3";
    system = builtins.currentSystem;
    outputs = [ "out" ];
    # Illegal, because does not end in `.drv`
    drvPath = "${builtins.storeDir}/8qlfcic10lw5304gqm8q45nr7g7jl62b-cachix-1.7.3-bin";
    outputName = "out";
    outPath = "${builtins.storeDir}/8qlfcic10lw5304gqm8q45nr7g7jl62b-cachix-1.7.3-bin";
    out = package;
  };
in
package