about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/coq-modules/metalib/default.nix
blob: a0268a543a5a44f1cf0e00f00849221941149628 (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
{ stdenv, fetchgit, coq, haskellPackages, which, ott
}:

stdenv.mkDerivation rec {
  name = "metalib-${coq.coq-version}-${version}";
  version = "20170713";

  src = fetchgit {
    url = "https://github.com/plclub/metalib.git";
    rev = "44e40aa082452dd333fc1ca2d2cc55311519bd52";
    sha256 = "1pra0nvx69q8d4bvpcvh9ngic1cy6z1chi03x56nisfqnc61b6y9";
  };

  # The 'lngen' command-line utility is built from Haskell sources
  lngen = with haskellPackages; mkDerivation {
    pname = "lngen";
    version = "0.0.1";
    src = fetchgit {
      url = "https://github.com/plclub/lngen";
      rev = "ea73ad315de33afd25f87ca738c71f358f1cd51c";
      sha256 = "1a0sj8n3lmsl1wlnqfy176k9lb9s8rl422bvg3ihl2i70ql8wisd";
    };
    isLibrary = true;
    isExecutable = true;
    libraryHaskellDepends = [ base containers mtl parsec syb ];
    executableHaskellDepends = [ base ];
    homepage = "https://github.com/plclub/lngen";
    description = "Tool for generating Locally Nameless definitions and proofs in Coq, working together with Ott";
    license = stdenv.lib.licenses.mit;
  };

  buildInputs = with coq.ocamlPackages; [ ocaml camlp5 which coq lngen ott findlib ];
  propagatedBuildInputs = [ coq ];

  enableParallelBuilding = true;

  buildPhase = ''
    (cd Metalib; make)
  '';

  installPhase = ''
    (cd Metalib; make -f CoqSrc.mk DSTROOT=/ COQLIB=$out/lib/coq/${coq.coq-version}/ install)
  '';

  meta = with stdenv.lib; {
    homepage = "https://github.com/plclub/metalib";
    license = licenses.mit;
    maintainers = [ maintainers.jwiegley ];
    platforms = coq.meta.platforms;
  };

  passthru = {
    compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" ];
  };

}