nixpkgs/pkgs/development/tools/build-managers/shards/default.nix
Peter Hoeg 29b0d4d0b6
shards: 0.13 -> 0.14 (#115471)
* shards: 0.13 -> 0.14

* fix
2021-03-09 11:18:52 +08:00

54 lines
1.2 KiB
Nix

{ lib
, fetchFromGitHub
, crystal_0_34
, crystal_0_36
}:
let
generic =
{ version, sha256, crystal }:
crystal.buildCrystalPackage {
pname = "shards";
inherit version;
src = fetchFromGitHub {
owner = "crystal-lang";
repo = "shards";
rev = "v${version}";
inherit sha256;
};
# we cannot use `make` or `shards` here as it would introduce a cyclical dependency
format = "crystal";
shardsFile = ./shards.nix;
crystalBinaries.shards.src = "./src/shards.cr";
# tries to execute git which fails spectacularly
doCheck = false;
meta = with lib; {
description = "Dependency manager for the Crystal language";
license = licenses.asl20;
maintainers = with maintainers; [ peterhoeg ];
inherit (crystal.meta) homepage platforms;
};
};
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_14 = generic {
version = "0.14.0";
sha256 = "sha256-HEyGXoGkQvLrk672/ekmBxnR1eRM//GwRPd/19LM8Wo=";
crystal = crystal_0_36;
};
shards = shards_0_14;
}