summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/verasco/default.nix
blob: 7f623e72dc3130d694727c66d43db8a349812628 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ stdenv, lib, fetchurl
, coq, ocaml, findlib, menhir, zarith
, tools ? stdenv.cc
}:

assert lib.versionAtLeast ocaml.version "4.02";

stdenv.mkDerivation rec {
  name = "verasco-1.3";
  src = fetchurl {
    url = "http://compcert.inria.fr/verasco/release/${name}.tgz";
    sha256 = "0zvljrpwnv443k939zlw1f7ijwx18nhnpr8jl3f01jc5v66hr2k8";
  };

  buildInputs = [ coq ocaml findlib menhir zarith ];

  preConfigure = ''
    substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc'
  '';

  configureFlags = [
    "-toolprefix ${tools}/bin/"
    (if stdenv.isDarwin then "ia32-macosx" else "ia32-linux")
  ];

  prefixKey = "-prefix ";

  enableParallelBuilding = true;
  buildFlags = "proof extraction ccheck";

  installPhase = ''
    mkdir -p $out/bin
    cp ccheck $out/bin/
    ln -s $out/bin/ccheck $out/bin/verasco
    if [ -e verasco.ini ]
    then
      mkdir -p $out/share
      cp verasco.ini $out/share/
    fi
    mkdir -p $out/lib/compcert
    cp -riv runtime/include $out/lib/compcert
  '';

  meta = {
    homepage = http://compcert.inria.fr/verasco/;
    description = "A static analyzer for the CompCert subset of ISO C 1999";
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
    license = stdenv.lib.licenses.unfree;
    platforms = with stdenv.lib.platforms; darwin ++ linux;
  };
}