mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
coqPackages.waterproof: init at 2.1.1+8.18
This commit is contained in:
parent
310d15111f
commit
11985737dc
24
pkgs/development/coq-modules/waterproof/default.nix
Normal file
24
pkgs/development/coq-modules/waterproof/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, mkCoqDerivation, coq, version ? null }:
|
||||
|
||||
mkCoqDerivation {
|
||||
pname = "waterproof";
|
||||
owner = "impermeable";
|
||||
repo = "coq-waterproof";
|
||||
inherit version;
|
||||
defaultVersion = let inherit (lib.versions) range; in
|
||||
lib.switch coq.coq-version [
|
||||
{ case = range "8.18" "8.18"; out = "2.1.1+8.18"; }
|
||||
] null;
|
||||
release = {
|
||||
"2.1.1+8.18".sha256 = "sha256-jYuQ9SPFRefNCUfn6+jEaJ4399EnU0gXPPkEDCpJYOI=";
|
||||
};
|
||||
|
||||
mlPlugin = true;
|
||||
|
||||
useDune = true;
|
||||
|
||||
meta = {
|
||||
description = "Coq proofs in a style that resembles non-mechanized mathematical proofs";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
};
|
||||
}
|
|
@ -159,6 +159,7 @@ let
|
|||
paco = self.paco.override { version = "4.1.2"; };
|
||||
};
|
||||
}));
|
||||
waterproof = callPackage ../development/coq-modules/waterproof {};
|
||||
zorns-lemma = callPackage ../development/coq-modules/zorns-lemma {};
|
||||
filterPackages = doesFilter: if doesFilter then filterCoqPackages self else self;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue