2021-10-17 17:04:58 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, gmp, libffi, fetchpatch }:
|
2019-03-28 02:30:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "polyml";
|
2019-03-28 02:30:45 +00:00
|
|
|
version = "5.7.1";
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
prePatch = lib.optionalString stdenv.isDarwin ''
|
2019-03-28 02:30:45 +00:00
|
|
|
substituteInPlace configure.ac --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
|
2021-10-17 17:04:58 +00:00
|
|
|
patches = [
|
|
|
|
./5.7-new-libffi-FFI_SYSV.patch
|
|
|
|
|
|
|
|
# glibc 2.34 compat
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://src.fedoraproject.org/rpms/polyml/raw/4d8868ca5a1ce3268f212599a321f8011c950496/f/polyml-pthread-stack-min.patch";
|
|
|
|
sha256 = "1h5ihg2sxld9ymrl3f2mpnbn2242ka1fsa0h4gl9h90kndvg6kby";
|
|
|
|
})
|
|
|
|
];
|
2020-02-25 15:29:27 +00:00
|
|
|
|
2019-03-28 02:30:45 +00:00
|
|
|
buildInputs = [ libffi gmp ];
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
nativeBuildInputs = lib.optional stdenv.isDarwin autoreconfHook;
|
2019-03-28 02:30:45 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-system-libffi"
|
|
|
|
"--with-gmp"
|
|
|
|
];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "polyml";
|
|
|
|
repo = "polyml";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0j0wv3ijfrjkfngy7dswm4k1dchk3jak9chl5735dl8yrl8mq755";
|
|
|
|
};
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2019-03-28 02:30:45 +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/";
|
2019-03-28 02:30:45 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = with platforms; (linux ++ darwin);
|
2020-02-26 10:08:38 +00:00
|
|
|
maintainers = with maintainers; [ maggesi ];
|
2022-12-06 20:47:40 +00:00
|
|
|
# never built on aarch64-darwin since first introduction in nixpkgs
|
|
|
|
broken = stdenv.isDarwin && stdenv.isAarch64;
|
2019-03-28 02:30:45 +00:00
|
|
|
};
|
|
|
|
}
|