2014-06-08 12:49:27 +00:00
|
|
|
{ stdenv, fetchurl, coq, ocaml, ocamlPackages, gcc }:
|
2014-05-02 00:09:37 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "compcert-${version}";
|
2014-10-05 22:07:34 +00:00
|
|
|
version = "2.4";
|
2014-05-02 00:09:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://compcert.inria.fr/release/${name}.tgz";
|
2014-10-05 22:07:34 +00:00
|
|
|
sha256 = "1qrb1cplx3v5wxn1c46kx67v1j52yznvjm2hkrsdybphhki2pyia";
|
2014-05-02 00:09:37 +00:00
|
|
|
};
|
|
|
|
|
2014-06-08 12:49:27 +00:00
|
|
|
buildInputs = [ coq ocaml ocamlPackages.menhir ];
|
2014-05-02 00:09:37 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-07-01 21:43:27 +00:00
|
|
|
configurePhase = "./configure -prefix $out -toolprefix ${gcc}/bin/ " +
|
|
|
|
(if stdenv.isDarwin then "ia32-macosx" else "ia32-linux");
|
2014-05-02 00:09:37 +00:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|