shards: 0.16 -> 0.17

This commit is contained in:
Peter Hoeg 2022-03-28 19:04:27 +08:00
parent 645796c0cb
commit 37463c21cc
2 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@
let
generic =
{ version, sha256 }:
{ version, hash }:
crystal.buildCrystalPackage {
pname = "shards";
@ -15,7 +15,7 @@ let
owner = "crystal-lang";
repo = "shards";
rev = "v${version}";
inherit sha256;
inherit hash;
};
# we cannot use `make` or `shards` here as it would introduce a cyclical dependency
@ -39,13 +39,13 @@ rec {
shards_0_15 = generic {
version = "0.15.0";
sha256 = "sha256-/C6whh5RbTBkFWqpn0GqyVe0opbrklm8xPv5MIG99VU=";
hash = "sha256-/C6whh5RbTBkFWqpn0GqyVe0opbrklm8xPv5MIG99VU=";
};
shards_0_16 = generic {
version = "0.16.0";
sha256 = "sha256-go8sL4djIDGNwb7FsCcATONnMYahHY8qJUDyUiPLRUY=";
shards_0_17 = generic {
version = "0.17.0";
hash = "sha256-f9MptrKalW7gi0J2h0fokkzdjKBVa2TmoPX8BYffqzY=";
};
shards = shards_0_16;
shards = shards_0_17;
}

View file

@ -15822,7 +15822,7 @@ with pkgs;
inherit (callPackage ../development/tools/build-managers/shards { })
shards_0_15
shards_0_16
shards_0_17
shards;
shellcheck = callPackage ../development/tools/shellcheck {