nixpkgs/pkgs/development/compilers/mosml/default.nix
2018-08-10 17:51:11 +08:00

30 lines
820 B
Nix

{ 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 ];
};
}