2017-06-18 17:32:18 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, gmp, libffi }:
|
2009-12-10 13:16:06 +00:00
|
|
|
|
2017-06-18 01:31:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "polyml";
|
2019-03-28 01:51:49 +00:00
|
|
|
version = "5.8";
|
2009-12-10 13:16:06 +00:00
|
|
|
|
2015-09-30 08:33:46 +01:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure.ac --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
|
2017-06-18 17:39:01 +01:00
|
|
|
buildInputs = [ libffi gmp ];
|
|
|
|
|
|
|
|
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
|
2017-06-18 17:32:18 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-system-libffi"
|
|
|
|
"--with-gmp"
|
|
|
|
];
|
2015-09-30 08:33:46 +01:00
|
|
|
|
2017-06-18 01:31:25 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "polyml";
|
|
|
|
repo = "polyml";
|
|
|
|
rev = "v${version}";
|
2019-03-28 01:51:49 +00:00
|
|
|
sha256 = "1s7q77bivppxa4vd7gxjj5dbh66qnirfxnkzh1ql69rfx1c057n3";
|
2009-12-10 13:16:06 +00:00
|
|
|
};
|
|
|
|
|
2017-06-18 01:31:25 +01: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.
|
|
|
|
'';
|
2018-06-30 01:18:27 +01:00
|
|
|
homepage = https://www.polyml.org/;
|
2017-06-18 01:31:25 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = with platforms; (linux ++ darwin);
|
2019-10-07 15:44:58 +01:00
|
|
|
maintainers = with maintainers; [ maggesi yurrriq ];
|
2009-12-10 13:16:06 +00:00
|
|
|
};
|
|
|
|
}
|