2015-07-15 18:14:18 +01:00
|
|
|
{ stdenv, fetchurl, coq, ocamlPackages
|
|
|
|
, tools ? stdenv.cc
|
|
|
|
}:
|
2014-05-02 01:09:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "compcert-${version}";
|
2016-01-24 21:54:53 +00:00
|
|
|
version = "2.6";
|
2014-05-02 01:09:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://compcert.inria.fr/release/${name}.tgz";
|
2016-01-24 21:54:53 +00:00
|
|
|
sha256 = "05sdxgg2w7ykw6xbcq6dl2kzxdz4qzhjajiawpy6490wqiji7wm1";
|
2014-05-02 01:09:37 +01:00
|
|
|
};
|
|
|
|
|
2016-01-24 21:54:53 +00:00
|
|
|
buildInputs = [ coq ] ++ (with ocamlPackages; [ ocaml findlib menhir ]);
|
2014-05-02 01:09:37 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-12-17 18:11:30 +00:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc'
|
2015-07-15 18:14:18 +01:00
|
|
|
./configure -prefix $out -toolprefix ${tools}/bin/ '' +
|
2014-07-01 22:43:27 +01:00
|
|
|
(if stdenv.isDarwin then "ia32-macosx" else "ia32-linux");
|
2014-05-02 01:09:37 +01:00
|
|
|
|
2015-07-15 18:14:18 +01: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/
|
|
|
|
mv backend cfrontend common cparser driver flocq ia32 lib \
|
|
|
|
$lib/lib/coq/${coq.coq-version}/user-contrib/compcert/
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
|
2014-10-05 23:07:34 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-05-02 01:09:37 +01:00
|
|
|
description = "Formally verified C compiler";
|
|
|
|
homepage = "http://compcert.inria.fr";
|
2014-10-05 23:07:34 +01:00
|
|
|
license = licenses.inria;
|
|
|
|
platforms = platforms.linux ++
|
|
|
|
platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ];
|
2014-05-02 01:09:37 +01:00
|
|
|
};
|
|
|
|
}
|