about summary refs log tree commit diff
path: root/nixos/tests/agda.nix
diff options
context:
space:
mode:
authoribbem <ibbem@ibbem.net>2024-02-26 09:13:28 +0100
committeribbem <ibbem@ibbem.net>2024-03-18 23:10:27 +0100
commit16426544536ddbe939e28b08d0b638ae78667dc6 (patch)
tree3b1aec42ba4a43d580d8b482476eb27e774f8b88 /nixos/tests/agda.nix
parent10c80b993425f377c86c2bb36da9f10b79de6fe2 (diff)
agda: Remove the --local-interfaces flag
Upstream now provides a library file for the builtin library and ensured
that the existing interface files will be used regardless of whether
--local-interfaces is in effect. Hence, Agda will not try to write to
the Nix store anymore except if the build flags are changed.
Diffstat (limited to 'nixos/tests/agda.nix')
-rw-r--r--nixos/tests/agda.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/nixos/tests/agda.nix b/nixos/tests/agda.nix
index 6f51300111acf..a8e90725c06b0 100644
--- a/nixos/tests/agda.nix
+++ b/nixos/tests/agda.nix
@@ -25,13 +25,6 @@ in
   };
 
   testScript = ''
-    assert (
-        "${pkgs.agdaPackages.lib.interfaceFile "Everything.agda"}" == "Everything.agdai"
-    ), "wrong interface file for Everything.agda"
-    assert (
-        "${pkgs.agdaPackages.lib.interfaceFile "tmp/Everything.agda.md"}" == "tmp/Everything.agdai"
-    ), "wrong interface file for tmp/Everything.agda.md"
-
     # Minimal script that typechecks
     machine.succeed("touch TestEmpty.agda")
     machine.succeed("agda TestEmpty.agda")