coqPackages.ceres: 0.4.0 → 0.4.1

This commit is contained in:
Vincent Laporte 2023-07-25 04:36:13 +02:00
parent 0d2cf999e5
commit 335de7152a
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -7,9 +7,15 @@ mkCoqDerivation {
owner = "Lysxia";
inherit version;
defaultVersion = if lib.versions.range "8.8" "8.16" coq.version then "0.4.0" else null;
defaultVersion = with lib.versions; lib.switch coq.version [
{ case = range "8.14" "8.17"; out = "0.4.1"; }
{ case = range "8.8" "8.16"; out = "0.4.0"; }
] null;
release."0.4.1".sha256 = "sha256-9vyk8/8IVsqNyhw3WPzl8w3L9Wu7gfaMVa3n2nWjFiA=";
release."0.4.0".sha256 = "sha256:0zwp3pn6fdj0qdig734zdczrls886al06mxqhhabms0jvvqijmbi";
useDuneifVersion = lib.versions.isGe "0.4.1";
meta = with lib; {
description = "Library for serialization to S-expressions";
license = licenses.mit;