mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
shards: 0.9.0 -> 0.10.0
This commit is contained in:
parent
912eb6b120
commit
760d56f6ba
@ -1,22 +1,29 @@
|
||||
{ stdenv, fetchFromGitHub, crystal, pcre, libyaml, which }:
|
||||
{ stdenv, fetchFromGitHub, crystal }:
|
||||
|
||||
crystal.buildCrystalPackage rec {
|
||||
pname = "shards";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "crystal-lang";
|
||||
repo = "shards";
|
||||
rev = "v${version}";
|
||||
owner = "crystal-lang";
|
||||
repo = "shards";
|
||||
rev = "v${version}";
|
||||
sha256 = "1bjy3hcdqq8769bx73f3pwn26rnkj23dngyfbw4iv32bw23x1d49";
|
||||
};
|
||||
|
||||
# we cannot use `make` here as it would introduce a dependency on itself
|
||||
format = "crystal";
|
||||
|
||||
shardsFile = ./shards.nix;
|
||||
|
||||
crystalBinaries.shards.src = "./src/shards.cr";
|
||||
|
||||
# tries to execute git which fails spectacularly
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Dependency manager for the Crystal language";
|
||||
license = licenses.asl20;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
inherit (crystal.meta) homepage platforms;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user