2016-09-19 17:00:42 +00:00
|
|
|
{ stdenv, lib, fetchurl
|
2017-02-20 20:09:53 +00:00
|
|
|
, coq, ocamlPackages
|
2015-07-15 17:14:18 +00:00
|
|
|
, tools ? stdenv.cc
|
|
|
|
}:
|
2014-05-02 00:09:37 +00:00
|
|
|
|
2017-02-20 20:09:53 +00:00
|
|
|
assert lib.versionAtLeast ocamlPackages.ocaml.version "4.02";
|
2016-09-19 17:00:42 +00:00
|
|
|
|
2014-05-02 00:09:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "compcert-${version}";
|
2017-02-20 20:09:53 +00:00
|
|
|
version = "3.0.1";
|
2014-05-02 00:09:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://compcert.inria.fr/release/${name}.tgz";
|
2017-02-20 20:09:53 +00:00
|
|
|
sha256 = "0dgrj26dzdy4n3s9b5hwc6lm54vans1v4qx9hdp1q8w1qqcdriq9";
|
2014-05-02 00:09:37 +00:00
|
|
|
};
|
|
|
|
|
2017-02-20 20:09:53 +00:00
|
|
|
buildInputs = [ coq ]
|
|
|
|
++ (with ocamlPackages; [ ocaml findlib menhir ]);
|
2014-05-02 00:09:37 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-12-17 18:11:30 +00:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc'
|
2017-02-01 00:03:12 +00:00
|
|
|
./configure -clightgen -prefix $out -toolprefix ${tools}/bin/ '' +
|
2017-07-17 15:20:47 +00:00
|
|
|
(if stdenv.isDarwin then "x86_64-macosx" else "x86_64-linux");
|
2014-05-02 00:09:37 +00:00
|
|
|
|
2015-07-15 17:14:18 +00:00
|
|
|
installTargets = "documentation install";
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $lib/share/doc/compcert
|
|
|
|
mv doc/html $lib/share/doc/compcert/
|
|
|
|
mkdir -p $lib/lib/coq/${coq.coq-version}/user-contrib/compcert/
|
2017-07-17 15:20:47 +00:00
|
|
|
mv backend cfrontend common cparser driver flocq x86 x86_64 lib \
|
2015-07-15 17:14:18 +00:00
|
|
|
$lib/lib/coq/${coq.coq-version}/user-contrib/compcert/
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
|
2014-10-05 22:07:34 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-05-02 00:09:37 +00:00
|
|
|
description = "Formally verified C compiler";
|
|
|
|
homepage = "http://compcert.inria.fr";
|
2014-10-05 22:07:34 +00:00
|
|
|
license = licenses.inria;
|
|
|
|
platforms = platforms.linux ++
|
|
|
|
platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ];
|
2014-05-02 00:09:37 +00:00
|
|
|
};
|
|
|
|
}
|