Merge pull request #44859 from vaibhavsagar/mosml-init
mosml: init at 2.10.1
This commit is contained in:
commit
62eab59734
29
pkgs/development/compilers/mosml/default.nix
Normal file
29
pkgs/development/compilers/mosml/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7014,6 +7014,8 @@ with pkgs;
|
|||||||
|
|
||||||
monoDLLFixer = callPackage ../build-support/mono-dll-fixer { };
|
monoDLLFixer = callPackage ../build-support/mono-dll-fixer { };
|
||||||
|
|
||||||
|
mosml = callPackage ../development/compilers/mosml { };
|
||||||
|
|
||||||
mozart-binary = callPackage ../development/compilers/mozart/binary.nix { };
|
mozart-binary = callPackage ../development/compilers/mozart/binary.nix { };
|
||||||
mozart = mozart-binary;
|
mozart = mozart-binary;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user