shards: 0.15 → 0.16

+10 -4
+9 -4
pkgs/development/tools/build-managers/shards/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 - , crystal_1_0 3 + , crystal 4 4 }: 5 + 5 6 let 6 7 generic = 7 - { version, sha256, crystal }: 8 + { version, sha256 }: 8 9 9 10 crystal.buildCrystalPackage { 10 11 pname = "shards"; ··· 39 40 shards_0_15 = generic { 40 41 version = "0.15.0"; 41 42 sha256 = "sha256-/C6whh5RbTBkFWqpn0GqyVe0opbrklm8xPv5MIG99VU="; 42 - crystal = crystal_1_0; 43 43 }; 44 44 45 - shards = shards_0_15; 45 + shards_0_16 = generic { 46 + version = "0.16.0"; 47 + sha256 = "sha256-go8sL4djIDGNwb7FsCcATONnMYahHY8qJUDyUiPLRUY="; 48 + }; 49 + 50 + shards = shards_0_16; 46 51 }
+1
pkgs/top-level/all-packages.nix
··· 14951 14951 14952 14952 inherit (callPackage ../development/tools/build-managers/shards { }) 14953 14953 shards_0_15 14954 + shards_0_16 14954 14955 shards; 14955 14956 14956 14957 shellcheck = callPackage ../development/tools/shellcheck {};