Add coq Matrix package 8.18 (#373307)

This commit is contained in:
RungChungo
2025-03-03 11:33:47 +01:00
committed by GitHub
parent 20ec0eab41
commit 9bc6260998
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,28 @@
{
lib,
mkCoqDerivation,
coq,
version ? null,
}:
mkCoqDerivation {
owner = "zhengpushi";
pname = "CoqMatrix";
inherit version;
defaultVersion =
with lib.versions;
lib.switch coq.version [
{
case = range "8.11" "8.18";
out = "1.0.6";
}
] null;
release = {
"1.0.6".sha256 = "sha256-XsM3fSstvB6GE5OqT7CFro+RWiYEgJsoQ5gXd74VaK0=";
};
meta = {
homepage = "https://github.com/zhengpushi/CoqMatrix";
description = "Matrix math";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ damhiya ];
};
}
+1
View File
@@ -44,6 +44,7 @@ let
coq-elpi = callPackage ../development/coq-modules/coq-elpi {};
coq-hammer = callPackage ../development/coq-modules/coq-hammer { };
coq-hammer-tactics = callPackage ../development/coq-modules/coq-hammer/tactics.nix { };
CoqMatrix = callPackage ../development/coq-modules/coq-matrix { };
coq-haskell = callPackage ../development/coq-modules/coq-haskell { };
coq-lsp = callPackage ../development/coq-modules/coq-lsp {};
coq-record-update = callPackage ../development/coq-modules/coq-record-update { };