coqPackages.hydra-battles: 0.5 -> 0.6

This commit is contained in:
Théo Zimmermann 2022-02-17 14:09:48 +01:00 committed by Vincent Laporte
parent a2535f3feb
commit d0bb08b5cc

View File

@ -1,22 +1,21 @@
{ lib, mkCoqDerivation, coq, equations, version ? null }:
{ lib, mkCoqDerivation, coq, equations, LibHyps, version ? null }:
with lib;
mkCoqDerivation {
(mkCoqDerivation {
pname = "hydra-battles";
owner = "coq-community";
release."0.4".sha256 = "1f7pc4w3kir4c9p0fjx5l77401bx12y72nmqxrqs3qqd3iynvqlp";
release."0.5".sha256 = "121pcbn6v59l0c165ha9n00whbddpy11npx2y9cn7g879sfk2nqk";
release."0.6".sha256 = "1dri4sisa7mhclf8w4kw7ixs5zxm8xyjr034r1377p96rdk3jj0j";
releaseRev = (v: "v${v}");
inherit version;
defaultVersion = with versions; switch coq.coq-version [
{ case = range "8.13" "8.14"; out = "0.5"; }
{ case = range "8.13" "8.15"; out = "0.6"; }
{ case = range "8.11" "8.12"; out = "0.4"; }
] null;
propagatedBuildInputs = [ equations ];
useDune2 = true;
meta = {
@ -32,4 +31,7 @@ mkCoqDerivation {
license = licenses.mit;
platforms = platforms.unix;
};
}
}).overrideAttrs(o:
let inherit (o) version; in {
propagatedBuildInputs = [ equations ] ++ optional (versions.isGe "0.6" version) LibHyps;
})