1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Merge pull request #141662 from LibreCybernetics/update-shards

This commit is contained in:
Artturi 2021-10-15 01:45:06 +03:00 committed by GitHub
commit 2b875a5183
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

View file

@ -1,10 +1,11 @@
{ lib
, fetchFromGitHub
, crystal_1_0
, crystal
}:
let
generic =
{ version, sha256, crystal }:
{ version, sha256 }:
crystal.buildCrystalPackage {
pname = "shards";
@ -39,8 +40,12 @@ rec {
shards_0_15 = generic {
version = "0.15.0";
sha256 = "sha256-/C6whh5RbTBkFWqpn0GqyVe0opbrklm8xPv5MIG99VU=";
crystal = crystal_1_0;
};
shards = shards_0_15;
shards_0_16 = generic {
version = "0.16.0";
sha256 = "sha256-go8sL4djIDGNwb7FsCcATONnMYahHY8qJUDyUiPLRUY=";
};
shards = shards_0_16;
}

View file

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