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 let
generic = generic =
{ version, sha256 }: { version, hash }:
crystal.buildCrystalPackage { crystal.buildCrystalPackage {
pname = "shards"; pname = "shards";
@ -15,7 +15,7 @@ let
owner = "crystal-lang"; owner = "crystal-lang";
repo = "shards"; repo = "shards";
rev = "v${version}"; rev = "v${version}";
inherit sha256; inherit hash;
}; };
# we cannot use `make` or `shards` here as it would introduce a cyclical dependency # we cannot use `make` or `shards` here as it would introduce a cyclical dependency
@ -39,13 +39,13 @@ rec {
shards_0_15 = generic { shards_0_15 = generic {
version = "0.15.0"; version = "0.15.0";
sha256 = "sha256-/C6whh5RbTBkFWqpn0GqyVe0opbrklm8xPv5MIG99VU="; hash = "sha256-/C6whh5RbTBkFWqpn0GqyVe0opbrklm8xPv5MIG99VU=";
}; };
shards_0_16 = generic { shards_0_17 = generic {
version = "0.16.0"; version = "0.17.0";
sha256 = "sha256-go8sL4djIDGNwb7FsCcATONnMYahHY8qJUDyUiPLRUY="; 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 { }) inherit (callPackage ../development/tools/build-managers/shards { })
shards_0_15 shards_0_15
shards_0_16 shards_0_17
shards; shards;
shellcheck = callPackage ../development/tools/shellcheck { shellcheck = callPackage ../development/tools/shellcheck {