77 lines
2.6 KiB
Nix
77 lines
2.6 KiB
Nix
{ stdenv, fetchurl, ncurses, ocamlPackages, graphviz
|
|
, ltl2ba, coq, alt-ergo, why3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "frama-c-${version}";
|
|
version = "20160501";
|
|
slang = "Aluminium";
|
|
|
|
src = fetchurl {
|
|
url = "http://frama-c.com/download/frama-c-${slang}-${version}.tar.gz";
|
|
sha256 = "02z4d1lg2cs4hgbjx74crfrabv39dyhdrq5lvhv0q3hx5c8w7p90";
|
|
};
|
|
|
|
why2 = fetchurl {
|
|
url = "http://why.lri.fr/download/why-2.34.tar.gz";
|
|
sha256 = "1335bhq9v3h46m8aba2c5myi9ghm87q41in0m15xvdrwq5big1jg";
|
|
};
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
ncurses ocaml findlib alt-ergo ltl2ba ocamlgraph
|
|
lablgtk coq graphviz zarith why3 zarith
|
|
];
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
unpackPhase = ''
|
|
tar xf $src
|
|
tar xf $why2
|
|
'';
|
|
|
|
buildPhase = ''
|
|
cd frama*
|
|
./configure --prefix=$out
|
|
make -j$NIX_BUILD_CORES
|
|
make install
|
|
cd ../why*
|
|
FRAMAC=$out/bin/frama-c ./configure --prefix=$out
|
|
make
|
|
make install
|
|
'';
|
|
|
|
|
|
# Enter frama-c directory before patching
|
|
prePatch = ''cd frama*'';
|
|
postPatch = ''
|
|
# strip absolute paths to /usr/bin
|
|
for file in ./configure ./share/Makefile.common ./src/*/configure; do
|
|
substituteInPlace $file --replace '/usr/bin/' ""
|
|
done
|
|
|
|
substituteInPlace ./src/plugins/aorai/aorai_register.ml --replace '"ltl2ba' '"${ltl2ba}/bin/ltl2ba'
|
|
|
|
cd ../why*
|
|
substituteInPlace ./frama-c-plugin/Makefile --replace 'shell frama-c' "shell $out/bin/frama-c"
|
|
substituteInPlace ./jc/jc_make.ml --replace ' why-dp ' " $out/bin/why-dp "
|
|
substituteInPlace ./jc/jc_make.ml --replace "?= why@\n" "?= $out/bin/why@\n"
|
|
substituteInPlace ./jc/jc_make.ml --replace ' gwhy-bin@' " $out/bin/gwhy-bin@"
|
|
substituteInPlace ./jc/jc_make.ml --replace ' why3 ' " ${why3}/bin/why3 "
|
|
substituteInPlace ./jc/jc_make.ml --replace ' why3ide ' " ${why3}/bin/why3ide "
|
|
substituteInPlace ./jc/jc_make.ml --replace ' why3replayer ' " ${why3}/bin/why3replayer "
|
|
substituteInPlace ./jc/jc_make.ml --replace ' why3ml ' " ${why3}/bin/why3ml "
|
|
substituteInPlace ./jc/jc_make.ml --replace ' coqdep@' " ${coq}/bin/coqdep@"
|
|
substituteInPlace ./jc/jc_make.ml --replace 'coqc' " ${coq}/bin/coqc"
|
|
substituteInPlace ./frama-c-plugin/register.ml --replace ' jessie ' " $out/bin/jessie "
|
|
cd ..
|
|
'';
|
|
|
|
meta = {
|
|
description = "An extensible and collaborative platform dedicated to source-code analysis of C software";
|
|
homepage = http://frama-c.com/;
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice amiddelk ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|