nixpkgs/pkgs/development/coq-modules/LibHyps/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
495 B
Nix
Raw Normal View History

2022-02-03 13:21:13 +00:00
{ lib, mkCoqDerivation, coq, version ? null }:
mkCoqDerivation {
pname = "LibHyps";
owner = "Matafou";
inherit version;
2024-06-28 13:47:38 +00:00
defaultVersion = if (lib.versions.range "8.11" "8.20") coq.version then "2.0.8" else null;
2022-02-03 13:21:13 +00:00
release = {
2024-02-27 15:46:08 +00:00
"2.0.8".sha256 = "sha256-u8T7ZWfgYNFBsIPss0uUS0oBvdlwPp3t5yYIMjYzfLc=";
2022-02-03 13:21:13 +00:00
};
configureScript = "./configure.sh";
releaseRev = (v: "libhyps-${v}");
meta = {
description = "Hypotheses manipulation library";
license = lib.licenses.mit;
2022-02-03 13:21:13 +00:00
};
}