mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
27 lines
821 B
Nix
27 lines
821 B
Nix
{ stdenv, fetchurl, coq, ocaml, ocamlPackages, gcc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "compcert-${version}";
|
|
version = "2.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://compcert.inria.fr/release/${name}.tgz";
|
|
sha256 = "1qrb1cplx3v5wxn1c46kx67v1j52yznvjm2hkrsdybphhki2pyia";
|
|
};
|
|
|
|
buildInputs = [ coq ocaml ocamlPackages.menhir ];
|
|
|
|
enableParallelBuilding = true;
|
|
configurePhase = "./configure -prefix $out -toolprefix ${gcc}/bin/ " +
|
|
(if stdenv.isDarwin then "ia32-macosx" else "ia32-linux");
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Formally verified C compiler";
|
|
homepage = "http://compcert.inria.fr";
|
|
license = licenses.inria;
|
|
platforms = platforms.linux ++
|
|
platforms.darwin;
|
|
maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ];
|
|
};
|
|
}
|