Merge pull request #44859 from vaibhavsagar/mosml-init

mosml: init at 2.10.1
This commit is contained in:
Sarah Brofeldt 2018-08-10 11:54:42 +02:00 committed by GitHub
commit 62eab59734
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, gmp, perl }:
stdenv.mkDerivation rec {
name = "mosml-${version}";
version = "2.10.1";
buildInputs = [ gmp perl ];
makeFlags = "PREFIX=$(out)";
src = fetchurl {
url = "https://github.com/kfl/mosml/archive/ver-${version}.tar.gz";
sha256 = "13x7wj94p0inn84pzpj52dch5s9lznqrj287bd3nk3dqd0v3kmgy";
};
setSourceRoot = ''export sourceRoot="$(echo */src)"'';
meta = with stdenv.lib; {
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 = http://mosml.org/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ vaibhavsagar ];
};
}

View file

@ -7014,6 +7014,8 @@ with pkgs;
monoDLLFixer = callPackage ../build-support/mono-dll-fixer { };
mosml = callPackage ../development/compilers/mosml { };
mozart-binary = callPackage ../development/compilers/mozart/binary.nix { };
mozart = mozart-binary;