mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
coqPackages.hierarchy-builder: init at 0.9.0
This commit is contained in:
parent
c9fc7a2a9c
commit
cf210c082d
43
pkgs/development/coq-modules/hierarchy-builder/default.nix
Normal file
43
pkgs/development/coq-modules/hierarchy-builder/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ stdenv, fetchFromGitHub, which, coq, coq-elpi }:
|
||||
|
||||
let
|
||||
versions = {
|
||||
"0.9.0" = {
|
||||
rev = "v0.9.0";
|
||||
sha256 = "1yss9f732r7bjaswgn46vd1rr3688ir0vz37wxkmy598xhrnd2ak";
|
||||
};
|
||||
};
|
||||
version = x: versions.${x} // {version = x;};
|
||||
params = {
|
||||
"8.10" = version "0.9.0";
|
||||
"8.11" = version "0.9.0";
|
||||
};
|
||||
param = params.${coq.coq-version};
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "coq${coq.coq-version}-hierarchy-builder-${param.version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "math-comp";
|
||||
repo = "hierarchy-builder";
|
||||
inherit (param) rev sha256;
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ coq-elpi ];
|
||||
buildInputs = [ coq coq.ocaml coq.ocamlPackages.elpi ];
|
||||
|
||||
installPhase = ''make -f Makefile.coq VFILES=structures.v COQLIB=$out/lib/coq/${coq.coq-version}/ install'';
|
||||
|
||||
meta = {
|
||||
description = "Coq plugin embedding ELPI.";
|
||||
maintainers = [ stdenv.lib.maintainers.cohencyril ];
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
inherit (coq.meta) platforms;
|
||||
inherit (src.meta) homepage;
|
||||
};
|
||||
|
||||
passthru = {
|
||||
compatibleCoqVersions = stdenv.lib.flip builtins.hasAttr params;
|
||||
};
|
||||
}
|
|
@ -31,13 +31,14 @@ let
|
|||
flocq = callPackage ../development/coq-modules/flocq {};
|
||||
gappalib = callPackage ../development/coq-modules/gappalib {};
|
||||
heq = callPackage ../development/coq-modules/heq {};
|
||||
hierarchy-builder = callPackage ../development/coq-modules/hierarchy-builder {};
|
||||
HoTT = callPackage ../development/coq-modules/HoTT {};
|
||||
interval = callPackage ../development/coq-modules/interval {};
|
||||
InfSeqExt = callPackage ../development/coq-modules/InfSeqExt {};
|
||||
iris = callPackage ../development/coq-modules/iris {};
|
||||
ltac2 = callPackage ../development/coq-modules/ltac2 {};
|
||||
math-classes = callPackage ../development/coq-modules/math-classes { };
|
||||
inherit (callPackage ../development/coq-modules/mathcomp { })
|
||||
inherit (callPackage ../development/coq-modules/mathcomp {})
|
||||
mathcompGen mathcompGenSingle ssreflect
|
||||
|
||||
mathcompCorePkgs mathcomp
|
||||
|
|
Loading…
Reference in a new issue