about summary refs log tree commit diff
path: root/pkgs/applications/science/logic/coq/default.nix
blob: 19827022072d609555f91a40fc8affd2b214c2a7 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# TODO:
# - coqide compilation should be optional or (better) separate;
# - coqide libraries are not installed;

{stdenv, fetchurl, ocaml, camlp5, lablgtk, ncurses}:

let

  pname = "coq";
  version = "8.2pl1";
  name = "${pname}-${version}";

in

stdenv.mkDerivation {
  inherit name;

  src = fetchurl {
    url = "http://coq.inria.fr/V${version}/files/${name}.tar.gz";
    sha256 = "7c15acfd369111e51d937cce632d22fc77a6718a5ac9f2dd2dcbdfab4256ae0c";
  };

  buildInputs = [ ocaml camlp5 ncurses lablgtk ];

  prefixKey = "-prefix ";

  configureFlags =
    "-camldir ${ocaml}/bin " +
    "-camlp5dir ${camlp5}/lib/ocaml/camlp5 " +
    "-lablgtkdir ${lablgtk}/lib/ocaml/lablgtk2 " +
    "-opt -coqide opt";

  buildFlags = "world"; # Debug with "world VERBOSE=1";

  patches = [ ./configure.patch.gz ];

  postPatch = ''
    BASH=$(type -tp bash)
    UNAME=$(type -tp uname)
    MV=$(type -tp mv)
    RM=$(type -tp rm)
    substituteInPlace configure --replace "/bin/bash" "$BASH" \
                                --replace "/bin/uname" "$UNAME"
    substituteInPlace Makefile --replace "/bin/bash" "$BASH" \
                               --replace "/bin/mv" "$MV" \
                               --replace "/bin/rm" "$RM"
    substituteInPlace Makefile.stage1 --replace "/bin/bash" "$BASH"
    substituteInPlace install.sh --replace "/bin/bash" "$BASH"
    substituteInPlace dev/v8-syntax/check-grammar --replace "/bin/bash" "$BASH"
    substituteInPlace scripts/coqmktop.ml --replace \
      "\"-I\"; \"+lablgtk2\"" \
      "\"-I\"; \"${lablgtk}/lib/ocaml/lablgtk2\"; \"-I\"; \"${lablgtk}/lib/ocaml/stublibs\""
  '';

  meta = {
    description = "Coq proof assistant";
    longDescription = ''
      Coq is a formal proof management system.  It provides a formal language
      to write mathematical definitions, executable algorithms and theorems
      together with an environment for semi-interactive development of
      machine-checked proofs.
    '';
    homepage = "http://coq.inria.fr";
    license = "LGPL";
  };
}