aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/eval-okay-path.nix
blob: 599b3354147c029f89216f800da6dfe6bffb3951 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[
  (builtins.path
    { path = ./.;
      filter = path: _: baseNameOf path == "data";
      recursive = true;
      sha256 = "1yhm3gwvg5a41yylymgblsclk95fs6jy72w0wv925mmidlhcq4sw";
      name = "output";
    })
  (builtins.path
    { path = ./data;
      recursive = false;
      sha256 = "0k4lwj58f2w5yh92ilrwy9917pycipbrdrr13vbb3yd02j09vfxm";
      name = "output";
    })
]