shards: 0.12 -> 0.13

This commit is contained in:
Peter Hoeg 2021-02-11 12:47:25 +08:00
parent 53ea6aee81
commit 88eb9ce528
2 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{ lib
, fetchFromGitHub
, crystal_0_34
, crystal_0_35
, crystal_0_36
}:
let
generic =
@ -36,17 +36,18 @@ let
in
rec {
# needed for anything that requires the old v1 shards format
shards_0_11 = generic {
version = "0.11.1";
sha256 = "05qnhc23xbmicdl4fwyxfpcvd8jq4inzh6v7jsjjw4n76vzb1f71";
crystal = crystal_0_34;
};
shards_0_12 = generic {
shards_0_13 = generic {
version = "0.12.0";
sha256 = "0dginczw1gc5qlb9k4b6ldxzqz8n97jrrnjvj3mm9wcdbc9j6h3c";
crystal = crystal_0_35;
crystal = crystal_0_36;
};
shards = shards_0_12;
shards = shards_0_13;
}

View File

@ -12817,7 +12817,7 @@ in
inherit (callPackage ../development/tools/build-managers/shards { })
shards_0_11
shards_0_12
shards_0_13
shards;
shellcheck = callPackage ../development/tools/shellcheck {};