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

stdenv.mkDerivation rec {

  name = "coq-unimath-${coq.coq-version}-${version}";
  version = "a2714eca";

  src = fetchgit {
    url = git://github.com/UniMath/UniMath.git;
    rev = "a2714eca29444a595cd280ea961ec33d17712009";
    sha256 = "0brhbslx4sxl8m9nxjbdl91gi99vcrikykl6b00f4cx5ww43csln";
  };

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

  installFlags = "COQLIB=$(out)/lib/coq/${coq.coq-version}/";

  meta = with stdenv.lib; {
    homepage = https://github.com/UniMath/UniMath;
    description = "UniMath aims to formalize a substantial body of mathematics using the univalent point of view.";
    maintainers = with maintainers; [ jwiegley ];
    platforms = coq.meta.platforms;
  };

}