summary refs log tree commit diff
path: root/pkgs/development/coq-modules/fiat/default.nix
blob: e084497cbf8198a897ca8e4a4c9e509bac4f908d (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
{stdenv, fetchurl, coq}:

stdenv.mkDerivation rec {

  name = "coq-fiat-${coq.coq-version}-${version}";
  version = "20141031";

  src = fetchurl {
    url = "http://plv.csail.mit.edu/fiat/releases/fiat-${version}.tar.gz";
    sha256 = "0c5jrcgbpdj0gfzg2q4naqw7frf0xxs1f451fnic6airvpaj0d55";
  };

  buildInputs = [ coq.ocaml coq.camlp5 ];
  propagatedBuildInputs = [ coq ];

  enableParallelBuilding = false;
  doCheck = !stdenv.isi686;

  unpackPhase = ''
    mkdir fiat
    cd fiat
    tar xvzf ${src}
  '';

  buildPhase = "make -j$NIX_BUILD_CORES sources";
  checkPhase = "make -j$NIX_BUILD_CORES examples";

  installPhase = ''
    COQLIB=$out/lib/coq/${coq.coq-version}/
    mkdir -p $COQLIB/user-contrib/Fiat
    cp -pR src/* $COQLIB/user-contrib/Fiat
  '';

  meta = with stdenv.lib; {
    homepage = http://plv.csail.mit.edu/fiat/;
    description = "A library for the Coq proof assistant for synthesizing efficient correct-by-construction programs from declarative specifications";
    maintainers = with maintainers; [ jwiegley ];
    platforms = coq.meta.platforms;
  };

}