2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, 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";
|
2020-07-25 09:31:43 +01:00
|
|
|
version = "5.8.1";
|
2009-12-10 13:16:06 +00:00
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
prePatch = lib.optionalString stdenv.isDarwin ''
|
2015-09-30 08:33:46 +01:00
|
|
|
substituteInPlace configure.ac --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
|
2017-06-18 17:39:01 +01:00
|
|
|
buildInputs = [ libffi gmp ];
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
nativeBuildInputs = 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}";
|
2020-07-25 09:31:43 +01:00
|
|
|
sha256 = "0gcx2fjiwsiazlyfhm7zlrd563blc4fy9w2mspib9divbavaxin6";
|
2009-12-10 13:16:06 +00:00
|
|
|
};
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with 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 02:11:51 +01:00
|
|
|
homepage = "https://www.polyml.org/";
|
2017-06-18 01:31:25 +01: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
|
|
|
};
|
|
|
|
}
|