* crystal: 0.31 -> 0.34 * crystal: use latest llvm * crystal: skip tests for 0.33
24 lines
631 B
Nix
24 lines
631 B
Nix
{ stdenv, fetchFromGitHub, crystal, pcre, libyaml, which }:
|
|
|
|
crystal.buildCrystalPackage rec {
|
|
pname = "shards";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crystal-lang";
|
|
repo = "shards";
|
|
rev = "v${version}";
|
|
sha256 = "1bjy3hcdqq8769bx73f3pwn26rnkj23dngyfbw4iv32bw23x1d49";
|
|
};
|
|
|
|
shardsFile = ./shards.nix;
|
|
crystalBinaries.shards.src = "./src/shards.cr";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Dependency manager for the Crystal language";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (crystal.meta) homepage platforms;
|
|
};
|
|
}
|