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

39 lines
973 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, gmp, libffi }:
stdenv.mkDerivation rec {
pname = "polyml";
2019-03-28 01:51:49 +00:00
version = "5.8";
2015-09-30 07:33:46 +00:00
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace configure.ac --replace stdc++ c++
'';
buildInputs = [ libffi gmp ];
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
configureFlags = [
"--enable-shared"
"--with-system-libffi"
"--with-gmp"
];
2015-09-30 07:33:46 +00:00
src = fetchFromGitHub {
owner = "polyml";
repo = "polyml";
rev = "v${version}";
2019-03-28 01:51:49 +00:00
sha256 = "1s7q77bivppxa4vd7gxjj5dbh66qnirfxnkzh1ql69rfx1c057n3";
};
meta = with stdenv.lib; {
description = "Standard ML compiler and interpreter";
longDescription = ''
Poly/ML is a full implementation of Standard ML.
'';
2018-06-30 00:18:27 +00:00
homepage = https://www.polyml.org/;
license = licenses.lgpl21;
platforms = with platforms; (linux ++ darwin);
maintainers = with maintainers; [ z77z yurrriq ];
};
}