mosml: init at 2.10.1

wip/yesman
Vaibhav Sagar 6 years ago
parent c116b485e4
commit 2625353466
  1. 29
      pkgs/development/compilers/mosml/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 { };
mosml = callPackage ../development/compilers/mosml { };
mozart-binary = callPackage ../development/compilers/mozart/binary.nix { };
mozart = mozart-binary;

Loading…
Cancel
Save