3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/coq-modules/extructures/default.nix

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

36 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-19 20:52:23 +01:00
{ lib, mkCoqDerivation, coq, version ? null
, ssreflect
, deriving
}:
with lib;
(mkCoqDerivation {
pname = "extructures";
owner = "arthuraa";
inherit version;
2021-10-28 15:17:24 +01:00
defaultVersion = with versions; switch [coq.coq-version ssreflect.version] [
2022-01-27 18:16:20 +00:00
{ cases = [(isGe "8.11") (isGe "1.12.0") ]; out = "0.3.1"; }
2021-10-28 15:17:24 +01:00
{ cases = [(range "8.11" "8.14") (isLe "1.12.0") ]; out = "0.3.0"; }
{ cases = [(range "8.10" "8.12") (isLe "1.12.0") ]; out = "0.2.2"; }
2021-10-19 20:52:23 +01:00
] null;
releaseRev = v: "v${v}";
2022-01-27 18:16:20 +00:00
release."0.3.1".sha256 = "sha256-KcuG/11Yq5ACem4FyVnQqHKvy3tNK7hd0ir2SJzzMN0=";
2021-10-19 20:52:23 +01:00
release."0.3.0".sha256 = "sha256:14rm0726f1732ldds495qavg26gsn30w6dfdn36xb12g5kzavp38";
release."0.2.2".sha256 = "sha256:1clzza73gccy6p6l95n6gs0adkqd3h4wgl4qg5l0qm4q140grvm7";
propagatedBuildInputs = [ ssreflect ];
meta = {
description = "Finite data structures with extensional reasoning";
license = licenses.mit;
maintainers = [ maintainers.vbgl ];
};
}).overrideAttrs (o: {
propagatedBuildInputs = o.propagatedBuildInputs
++ optional (versionAtLeast o.version "0.3.0") deriving;
})