about summary refs log tree commit diff
path: root/nixos/tests/sbt-extras.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/sbt-extras.nix')
-rw-r--r--nixos/tests/sbt-extras.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/nixos/tests/sbt-extras.nix b/nixos/tests/sbt-extras.nix
deleted file mode 100644
index f1672bf20665c..0000000000000
--- a/nixos/tests/sbt-extras.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-import ./make-test-python.nix ({ pkgs, ...} : {
-  name = "sbt-extras";
-  meta = with pkgs.lib.maintainers; {
-    maintainers = [ nequissimus ];
-  };
-
-  machine = { pkgs, ... }:
-    {
-      environment.systemPackages = [ pkgs.sbt-extras ];
-    };
-
-  testScript =
-    ''
-      machine.succeed("(sbt -h)")
-    '';
-})