6579b42989
Also added myself to list of maintainers.
23 lines
521 B
Nix
23 lines
521 B
Nix
{ lib
|
|
, crystal
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
crystal.buildCrystalPackage rec {
|
|
pname = "blahaj";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GeopJr";
|
|
repo = "BLAHAJ";
|
|
rev = "v${version}";
|
|
hash = "sha256-rX6isAIlpNDBOGLmtvRXmqY90ByFfXeYI0HAAPIMXf8=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|