2017-03-25 14:54:24 +00:00
|
|
|
{ stdenv, fetchFromGitHub, coreutils, autoreconfHook, smlnj }:
|
2014-08-19 07:36:57 +01:00
|
|
|
|
2017-03-25 14:54:24 +00:00
|
|
|
let
|
|
|
|
rev = "592a5714595b4448b646a7d49df04c285668c2f8";
|
|
|
|
in stdenv.mkDerivation rec {
|
2014-08-19 07:36:57 +01:00
|
|
|
name = "manticore-${version}";
|
|
|
|
version = "2014.08.18";
|
2017-03-25 14:54:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rrnewton";
|
|
|
|
repo = "manticore_temp_mirror";
|
|
|
|
sha256 = "1snwlm9a31wfgvzb80y7r7yvc6n0k0bi675lqwzll95as7cdswwi";
|
|
|
|
inherit rev;
|
2014-08-19 07:36:57 +01:00
|
|
|
};
|
2017-03-25 14:54:24 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
buildInputs = [ coreutils smlnj ];
|
|
|
|
|
|
|
|
autoreconfFlags = "-Iconfig -vfi";
|
|
|
|
|
2017-03-25 18:43:42 +00:00
|
|
|
unpackPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cd $out
|
|
|
|
unpackFile $src
|
|
|
|
mv manticore_temp_mirror-${rev}-src repo_checkout
|
|
|
|
cd repo_checkout
|
|
|
|
chmod u+w . -R
|
|
|
|
'';
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
substituteInPlace configure.ac --replace 'MANTICORE_ROOT=`pwd`' 'MANTICORE_ROOT=$out/repo_checkout'
|
|
|
|
'';
|
2017-03-25 14:54:24 +00:00
|
|
|
|
|
|
|
preInstall = "mkdir -p $out/bin";
|
2014-08-19 07:36:57 +01:00
|
|
|
|
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A parallel, pure variant of Standard ML";
|
2014-08-19 07:36:57 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Manticore is a high-level parallel programming language aimed at
|
|
|
|
general-purpose applications running on multi-core
|
|
|
|
processors. Manticore supports parallelism at multiple levels:
|
|
|
|
explicit concurrency and coarse-grain parallelism via CML-style
|
|
|
|
constructs and fine-grain parallelism via various light-weight
|
|
|
|
notations, such as parallel tuple expressions and NESL/Nepal-style
|
|
|
|
parallel array comprehensions.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://manticore.cs.uchicago.edu/;
|
|
|
|
};
|
|
|
|
}
|