2020-02-25 15:29:27 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, gmp, libffi }:
|
2009-12-10 13:16:06 +00:00
|
|
|
|
2017-06-18 00:31:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "polyml";
|
2020-07-25 08:31:43 +00:00
|
|
|
version = "5.8.1";
|
2009-12-10 13:16:06 +00:00
|
|
|
|
2015-09-30 07:33:46 +00:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure.ac --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
|
2017-06-18 16:39:01 +00:00
|
|
|
buildInputs = [ libffi gmp ];
|
|
|
|
|
|
|
|
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
|
2017-06-18 16:32:18 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-system-libffi"
|
|
|
|
"--with-gmp"
|
|
|
|
];
|
2015-09-30 07:33:46 +00:00
|
|
|
|
2017-06-18 00:31:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "polyml";
|
|
|
|
repo = "polyml";
|
|
|
|
rev = "v${version}";
|
2020-07-25 08:31:43 +00:00
|
|
|
sha256 = "0gcx2fjiwsiazlyfhm7zlrd563blc4fy9w2mspib9divbavaxin6";
|
2009-12-10 13:16:06 +00:00
|
|
|
};
|
|
|
|
|
2017-06-18 00:31:25 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-12-10 13:16:06 +00:00
|
|
|
description = "Standard ML compiler and interpreter";
|
|
|
|
longDescription = ''
|
|
|
|
Poly/ML is a full implementation of Standard ML.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.polyml.org/";
|
2017-06-18 00:31:25 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = with platforms; (linux ++ darwin);
|
2020-02-26 10:08:38 +00:00
|
|
|
maintainers = with maintainers; [ maggesi kovirobi ];
|
2009-12-10 13:16:06 +00:00
|
|
|
};
|
|
|
|
}
|