about summary refs log tree commit diff
path: root/tests/nar-index.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-05-24T09·04+0200
committerEelco Dolstra <edolstra@gmail.com>2017-05-24T09·04+0200
commitedbb105e98b1d2c54776e91b49984eb50cce9db4 (patch)
treeaba4e1c17572bc2c3462b62d918b5e54e3f7ee8c /tests/nar-index.nix
parentf134fc4cbecc258771272c2418af3b92ade88f80 (diff)
parenta1f428b13bd003caaf3a1d1da6e934d52b6ea6dc (diff)
Merge branch 'nar-accessor-tree' of https://github.com/bennofs/nix
Diffstat (limited to 'tests/nar-index.nix')
-rw-r--r--tests/nar-index.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/nar-index.nix b/tests/nar-index.nix
new file mode 100644
index 000000000000..0e2a7f721135
--- /dev/null
+++ b/tests/nar-index.nix
@@ -0,0 +1,23 @@
+with import ./config.nix;
+
+rec {
+    a = mkDerivation {
+        name = "nar-index-a";
+        builder = builtins.toFile "builder.sh"
+      ''
+        mkdir $out
+        mkdir $out/foo
+        touch $out/foo-x
+        touch $out/foo/bar
+        touch $out/foo/baz
+        touch $out/qux
+        mkdir $out/zyx
+
+        cat >$out/foo/data <<EOF
+        lasjdöaxnasd
+asdom 12398
+ä"§Æẞ¢«»”alsd
+EOF
+      '';
+    };
+}
\ No newline at end of file