Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
22 lines
505 B
Nix
22 lines
505 B
Nix
{ lib,
|
|
python3,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "gay";
|
|
version = "1.2.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ms-jpq/gay";
|
|
description = "Colour your text / terminal to be more gay";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ AndersonTorres CodeLongAndProsper90 ];
|
|
mainProgram = "gay";
|
|
};
|
|
}
|