nixpkgs/pkgs/development/compilers/mosml/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1002 B
Nix
Raw Normal View History

2022-01-07 16:09:23 +00:00
{ lib, stdenv, fetchFromGitHub, gmp, perl }:
2018-08-10 08:00:39 +01:00
stdenv.mkDerivation rec {
pname = "mosml";
2018-08-10 08:00:39 +01:00
version = "2.10.1";
buildInputs = [ gmp perl ];
makeFlags = [ "PREFIX=$(out)" "CC=${stdenv.cc.targetPrefix}cc" ];
2018-08-10 08:00:39 +01:00
2022-01-07 16:09:23 +00:00
src = fetchFromGitHub {
owner = "kfl";
repo = "mosml";
rev = "ver-${version}";
sha256 = "sha256-GK39WvM7NNhoC5f0Wjy4/5VWT+Rbh2qo+W71hWrbPso=";
2018-08-10 08:00:39 +01:00
};
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; {
2018-08-10 08:00:39 +01:00
description = "A 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/";
2018-08-10 08:00:39 +01:00
license = licenses.gpl2;
2019-08-20 22:20:00 +01:00
platforms = platforms.unix;
2018-08-10 08:00:39 +01:00
maintainers = with maintainers; [ vaibhavsagar ];
};
}