Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
678 B
Nix
33 lines
678 B
Nix
{
|
|
lib,
|
|
crystal,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
crystal.buildCrystalPackage rec {
|
|
pname = "thicket";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "taylorthurlow";
|
|
repo = "thicket";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-sF+fNKEZEfjpW3buh6kFUpL1P0yO9g4SrTb0rhx1uNc=";
|
|
};
|
|
|
|
format = "shards";
|
|
|
|
crystalBinaries.thicket.src = "src/thicket.cr";
|
|
|
|
# there is one test that tries to clone a repo
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Better one-line git log";
|
|
homepage = "https://github.com/taylorthurlow/thicket";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
|
mainProgram = "thicket";
|
|
};
|
|
}
|