about summary refs log tree commit diff
path: root/third_party/nix/tests/hash-check.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/tests/hash-check.nix')
-rw-r--r--third_party/nix/tests/hash-check.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/third_party/nix/tests/hash-check.nix b/third_party/nix/tests/hash-check.nix
deleted file mode 100644
index 4a8e9b8a8d..0000000000
--- a/third_party/nix/tests/hash-check.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-let {
-
-  input1 = derivation {
-    name = "dependencies-input-1";
-    system = "i086-msdos";
-    builder = "/bar/sh";
-    args = ["-e" "-x" ./dummy];
-  };
-
-  input2 = derivation {
-    name = "dependencies-input-2";
-    system = "i086-msdos";
-    builder = "/bar/sh";
-    args = ["-e" "-x" ./dummy];
-    outputHashMode = "recursive";
-    outputHashAlgo = "md5";
-    outputHash = "ffffffffffffffffffffffffffffffff";
-  };
-
-  body = derivation {
-    name = "dependencies";
-    system = "i086-msdos";
-    builder = "/bar/sh";
-    args = ["-e" "-x" (./dummy  + "/FOOBAR/../.")];
-    input1 = input1 + "/.";
-    inherit input2;
-  };
-
-}
\ No newline at end of file