diff options
author | Rutger Broekhoff | 2025-07-07 21:52:08 +0200 |
---|---|---|
committer | Rutger Broekhoff | 2025-07-07 21:52:08 +0200 |
commit | ba61dfd69504ec6263a9dee9931d93adeb6f3142 (patch) | |
tree | d6c9b78e50eeab24e0c1c09ab45909a6ae3fd5db /test/testdata/eval-okay-path.nix | |
download | verified-dyn-lang-interp-ba61dfd69504ec6263a9dee9931d93adeb6f3142.tar.gz verified-dyn-lang-interp-ba61dfd69504ec6263a9dee9931d93adeb6f3142.zip |
Initialize repository
Diffstat (limited to 'test/testdata/eval-okay-path.nix')
-rw-r--r-- | test/testdata/eval-okay-path.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-path.nix b/test/testdata/eval-okay-path.nix new file mode 100644 index 0000000..599b335 --- /dev/null +++ b/test/testdata/eval-okay-path.nix | |||
@@ -0,0 +1,15 @@ | |||
1 | [ | ||
2 | (builtins.path | ||
3 | { path = ./.; | ||
4 | filter = path: _: baseNameOf path == "data"; | ||
5 | recursive = true; | ||
6 | sha256 = "1yhm3gwvg5a41yylymgblsclk95fs6jy72w0wv925mmidlhcq4sw"; | ||
7 | name = "output"; | ||
8 | }) | ||
9 | (builtins.path | ||
10 | { path = ./data; | ||
11 | recursive = false; | ||
12 | sha256 = "0k4lwj58f2w5yh92ilrwy9917pycipbrdrr13vbb3yd02j09vfxm"; | ||
13 | name = "output"; | ||
14 | }) | ||
15 | ] | ||