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

39 lines
985 B
Nix
Raw Normal View History

2017-06-18 11:32:18 -05:00
{ stdenv, fetchFromGitHub, autoreconfHook, gmp, libffi }:
2009-12-10 13:16:06 +00:00
2017-06-17 19:31:25 -05:00
stdenv.mkDerivation rec {
name = "polyml-${version}";
2018-03-29 11:16:14 -07:00
version = "5.7.1";
2009-12-10 13:16:06 +00:00
2015-09-30 00:33:46 -07:00
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace configure.ac --replace stdc++ c++
'';
2017-06-18 11:39:01 -05:00
buildInputs = [ libffi gmp ];
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
2017-06-18 11:32:18 -05:00
configureFlags = [
"--enable-shared"
"--with-system-libffi"
"--with-gmp"
];
2015-09-30 00:33:46 -07:00
2017-06-17 19:31:25 -05:00
src = fetchFromGitHub {
owner = "polyml";
repo = "polyml";
rev = "v${version}";
2018-03-29 11:16:14 -07:00
sha256 = "0j0wv3ijfrjkfngy7dswm4k1dchk3jak9chl5735dl8yrl8mq755";
2009-12-10 13:16:06 +00:00
};
2017-06-17 19:31:25 -05: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-29 17:18:27 -07:00
homepage = https://www.polyml.org/;
2017-06-17 19:31:25 -05:00
license = licenses.lgpl21;
platforms = with platforms; (linux ++ darwin);
maintainers = with maintainers; [ z77z yurrriq ];
2009-12-10 13:16:06 +00:00
};
}