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

39 lines
982 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}";
2017-06-17 19:31:25 -05:00
version = "5.7";
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}";
sha256 = "10nsljmcl0zjbcc7ifc991ypwfwq5gh4rcp5rg4nnb706c6bs16y";
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.
'';
homepage = http://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
};
}