Skip to content

Commit

Permalink
coqPackages.stdpp: 1.4.0 → 1.5.0
Browse files Browse the repository at this point in the history
coqPackages.iris: 3.3.0 → 3.4.0
  • Loading branch information
vbgl committed Apr 12, 2021
1 parent 28626eb commit c87714a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion pkgs/development/coq-modules/iris/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ with lib; mkCoqDerivation rec {
domain = "gitlab.mpi-sws.org";
owner = "iris";
inherit version;
defaultVersion = if versions.range "8.9" "8.12" coq.coq-version then "3.3.0" else null;
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}";

Expand Down
6 changes: 5 additions & 1 deletion pkgs/development/coq-modules/stdpp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ with lib; mkCoqDerivation rec {
inherit version;
domain = "gitlab.mpi-sws.org";
owner = "iris";
defaultVersion = if versions.range "8.8" "8.12" coq.coq-version then "1.4.0" else null;
defaultVersion = with versions; switch coq.coq-version [
{ case = isGe "8.11"; out = "1.5.0"; }
{ case = range "8.8" "8.11"; out = "1.4.0"; }
] null;
release."1.5.0".sha256 = "1ym0fy620imah89p8b6rii8clx2vmnwcrbwxl3630h24k42092nf";
release."1.4.0".sha256 = "1m6c7ibwc99jd4cv14v3r327spnfvdf3x2mnq51f9rz99rffk68r";
releaseRev = v: "coq-stdpp-${v}";

Expand Down

0 comments on commit c87714a

Please sign in to comment.