From 8d4d822bc0efa9de6eddc79cb0d82897a9baa750 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 25 May 2023 05:54:59 +0200 Subject: [PATCH] coqPackages.extructures: enable for Coq 8.17 --- pkgs/development/coq-modules/extructures/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/coq-modules/extructures/default.nix b/pkgs/development/coq-modules/extructures/default.nix index b6345d7b0ac3..e898cecd30bf 100644 --- a/pkgs/development/coq-modules/extructures/default.nix +++ b/pkgs/development/coq-modules/extructures/default.nix @@ -9,7 +9,7 @@ inherit version; defaultVersion = with lib.versions; lib.switch [coq.coq-version ssreflect.version] [ - { cases = [(range "8.11" "8.16") (isGe "1.12.0") ]; out = "0.3.1"; } + { cases = [(range "8.11" "8.17") (isGe "1.12.0") ]; out = "0.3.1"; } { 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"; } ] null;