about summary refs log tree commit diff
path: root/pkgs/development/compilers/mosml/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/mosml/default.nix')
-rw-r--r--pkgs/development/compilers/mosml/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/development/compilers/mosml/default.nix b/pkgs/development/compilers/mosml/default.nix
deleted file mode 100644
index 26ce0365a6cd..000000000000
--- a/pkgs/development/compilers/mosml/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, gmp, perl }:
-
-stdenv.mkDerivation rec {
-  pname = "mosml";
-  version = "2.10.1";
-
-  buildInputs = [ gmp perl ];
-
-  makeFlags = [ "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ];
-
-  src = fetchFromGitHub {
-    owner = "kfl";
-    repo = "mosml";
-    rev = "ver-${version}";
-    sha256 = "sha256-GK39WvM7NNhoC5f0Wjy4/5VWT+Rbh2qo+W71hWrbPso=";
-  };
-
-  setSourceRoot = ''export sourceRoot="$(echo */src)"'';
-
-  # MosML needs a specific RPATH entry pointing to $(out)/lib (added
-  # by the build system), which patchelf will remove.
-  dontPatchELF = true;
-
-  meta = with lib; {
-    description = "Light-weight implementation of Standard ML";
-    longDescription = ''
-      Moscow ML is a light-weight implementation of Standard ML (SML), a strict
-      functional language used in teaching and research.
-    '';
-    homepage = "https://mosml.org/";
-    license = licenses.gpl2;
-    platforms = platforms.unix;
-    maintainers = with maintainers; [ vaibhavsagar ];
-  };
-}