coqPackages.coq-extensible-records: init at 1.2.0
This commit is contained in:
parent
4a200fbbf0
commit
f5dbe5de07
@ -3666,6 +3666,11 @@
|
|||||||
github = "PsyanticY";
|
github = "PsyanticY";
|
||||||
name = "Psyanticy";
|
name = "Psyanticy";
|
||||||
};
|
};
|
||||||
|
ptival = {
|
||||||
|
email = "valentin.robert.42@gmail.com";
|
||||||
|
github = "Ptival";
|
||||||
|
name = "Valentin Robert";
|
||||||
|
};
|
||||||
puffnfresh = {
|
puffnfresh = {
|
||||||
email = "brian@brianmckenna.org";
|
email = "brian@brianmckenna.org";
|
||||||
github = "puffnfresh";
|
github = "puffnfresh";
|
||||||
|
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, coq }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "coq${coq.coq-version}-coq-extensible-records-1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gmalecha";
|
||||||
|
repo = "coq-extensible-records";
|
||||||
|
rev = "1.2.0";
|
||||||
|
sha256 = "0h5m04flqfk0v577syw0v1dw2wf7xrx6jaxv5gpmqzssf5hxafy4";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ coq ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
make -f Makefile.coq COQLIB=$out/lib/coq/${coq.coq-version}/ install
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/gmalecha/coq-extensible-records;
|
||||||
|
description = "Implementation of extensible records in Coq";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ptival ];
|
||||||
|
platforms = coq.meta.platforms;
|
||||||
|
};
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" ];
|
||||||
|
};
|
||||||
|
}
|
@ -17,6 +17,7 @@ let
|
|||||||
Cheerios = callPackage ../development/coq-modules/Cheerios {};
|
Cheerios = callPackage ../development/coq-modules/Cheerios {};
|
||||||
CoLoR = callPackage ../development/coq-modules/CoLoR {};
|
CoLoR = callPackage ../development/coq-modules/CoLoR {};
|
||||||
coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {};
|
coq-ext-lib = callPackage ../development/coq-modules/coq-ext-lib {};
|
||||||
|
coq-extensible-records = callPackage ../development/coq-modules/coq-extensible-records {};
|
||||||
coq-haskell = callPackage ../development/coq-modules/coq-haskell { };
|
coq-haskell = callPackage ../development/coq-modules/coq-haskell { };
|
||||||
coqprime = callPackage ../development/coq-modules/coqprime {};
|
coqprime = callPackage ../development/coq-modules/coqprime {};
|
||||||
coquelicot = callPackage ../development/coq-modules/coquelicot {};
|
coquelicot = callPackage ../development/coq-modules/coquelicot {};
|
||||||
|
Loading…
Reference in New Issue
Block a user