mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
coqPackages.category-theory: New expression
This commit is contained in:
parent
0042a343b4
commit
d1532bc6c6
45
pkgs/development/coq-modules/category-theory/default.nix
Normal file
45
pkgs/development/coq-modules/category-theory/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ stdenv, fetchgit, coq, ssreflect }:
|
||||||
|
|
||||||
|
let param =
|
||||||
|
{
|
||||||
|
"8.6" = {
|
||||||
|
version = "20171214";
|
||||||
|
rev = "babf9c013506da1dbd67171e4a3ae87fdb7e9d00";
|
||||||
|
sha256 = "16fsf4cggx9s9fkijnpi4g614nmdb2yx7inzqqn070f8p959qcrd";
|
||||||
|
};
|
||||||
|
|
||||||
|
"8.7" = {
|
||||||
|
version = "20171214";
|
||||||
|
rev = "babf9c013506da1dbd67171e4a3ae87fdb7e9d00";
|
||||||
|
sha256 = "16fsf4cggx9s9fkijnpi4g614nmdb2yx7inzqqn070f8p959qcrd";
|
||||||
|
};
|
||||||
|
|
||||||
|
}."${coq.coq-version}"
|
||||||
|
; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "coq${coq.coq-version}-category-theory-${param.version}";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = git://github.com/jwiegley/category-theory.git;
|
||||||
|
inherit (param) rev sha256;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ coq.ocaml coq.camlp5 coq.findlib ];
|
||||||
|
propagatedBuildInputs = [ coq ssreflect ];
|
||||||
|
|
||||||
|
enableParallelBuilding = false;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = git://github.com/jwiegley/category-theory.git;
|
||||||
|
description = "A formalization of category theory in Coq for personal study and practical work";
|
||||||
|
maintainers = with maintainers; [ jwiegley ];
|
||||||
|
platforms = coq.meta.platforms;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -18868,6 +18868,7 @@ with pkgs;
|
||||||
fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {};
|
fiat_HEAD = callPackage ../development/coq-modules/fiat/HEAD.nix {};
|
||||||
equations = callPackage ../development/coq-modules/equations { };
|
equations = callPackage ../development/coq-modules/equations { };
|
||||||
coq-haskell = callPackage ../development/coq-modules/coq-haskell { };
|
coq-haskell = callPackage ../development/coq-modules/coq-haskell { };
|
||||||
|
category-theory = callPackage ../development/coq-modules/category-theory { };
|
||||||
};
|
};
|
||||||
|
|
||||||
coqPackages_8_5 = mkCoqPackages coqPackages_8_5 coq_8_5;
|
coqPackages_8_5 = mkCoqPackages coqPackages_8_5 coq_8_5;
|
||||||
|
|
Loading…
Reference in a new issue