c87714a040
coqPackages.iris: 3.3.0 → 3.4.0
24 lines
728 B
Nix
24 lines
728 B
Nix
{ lib, mkCoqDerivation, coq, stdpp, version ? null }:
|
|
|
|
with lib; mkCoqDerivation rec {
|
|
pname = "iris";
|
|
domain = "gitlab.mpi-sws.org";
|
|
owner = "iris";
|
|
inherit version;
|
|
defaultVersion = with versions; switch coq.coq-version [
|
|
{ case = isGe "8.11"; out = "3.4.0"; }
|
|
{ case = range "8.9" "8.11"; out = "3.3.0"; }
|
|
] null;
|
|
release."3.4.0".sha256 = "0vdc2mdqn5jjd6yz028c0c6blzrvpl0c7apx6xas7ll60136slrb";
|
|
release."3.3.0".sha256 = "0az4gkp5m8sq0p73dlh0r7ckkzhk7zkg5bndw01bdsy5ywj0vilp";
|
|
releaseRev = v: "iris-${v}";
|
|
|
|
propagatedBuildInputs = [ stdpp ];
|
|
|
|
meta = {
|
|
description = "The Coq development of the Iris Project";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.vbgl ];
|
|
};
|
|
}
|