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
35 lines
814 B
Nix
35 lines
814 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
crystal,
|
|
fetchFromGitHub,
|
|
# https://crystal-lang.org/2019/09/06/parallelism-in-crystal/
|
|
multithreading ? true,
|
|
static ? stdenv.hostPlatform.isStatic,
|
|
}:
|
|
|
|
crystal.buildCrystalPackage rec {
|
|
pname = "blahaj";
|
|
version = "2.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GeopJr";
|
|
repo = "BLAHAJ";
|
|
rev = "v${version}";
|
|
hash = "sha256-CmMF9jDKUo+c8dYc2UEHKdBDE4dgwExcRS5sSUsUJik=";
|
|
};
|
|
|
|
buildTargets = [ "${if static then "static" else "build"}${if multithreading then "_mt" else ""}" ];
|
|
|
|
meta = with lib; {
|
|
description = "Gay sharks at your local terminal - lolcat-like CLI tool";
|
|
homepage = "https://blahaj.queer.software";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [
|
|
aleksana
|
|
cafkafk
|
|
];
|
|
mainProgram = "blahaj";
|
|
};
|
|
}
|