about summary refs log tree commit diff
path: root/pkgs/development/compilers/reason/tests/hello/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/reason/tests/hello/default.nix')
-rw-r--r--pkgs/development/compilers/reason/tests/hello/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/development/compilers/reason/tests/hello/default.nix b/pkgs/development/compilers/reason/tests/hello/default.nix
deleted file mode 100644
index 831b528c6ba9..000000000000
--- a/pkgs/development/compilers/reason/tests/hello/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib, buildDunePackage, ppxlib, reason }:
-
-buildDunePackage rec {
-  pname = "helloreason";
-  version = "0.0.1";
-
-  src = lib.fileset.toSource {
-    root = ./.;
-    fileset = lib.fileset.unions [
-      ./helloreason.opam
-      ./helloreason.re
-      ./dune-project
-      ./dune
-    ];
-  };
-
-  nativeBuildInputs = [
-    reason
-  ];
-
-  buildInputs = [
-    ppxlib
-    reason
-  ];
-
-  doCheck = true;
-
-  doInstallCheck = true;
-  postInstallCheck = ''
-    $out/bin/${pname} | grep -q "Hello From Reason" > /dev/null
-  '';
-
-  meta.timeout = 60;
-}