nixpkgs/pkgs/tools/misc/gay/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
589 B
Nix
Raw Normal View History

2022-04-24 09:10:04 +01:00
{ lib, python3Packages }:
2022-01-18 21:28:00 +00:00
2022-01-23 04:20:00 +00:00
python3Packages.buildPythonApplication rec {
pname = "gay";
2022-01-18 21:28:00 +00:00
version = "1.2.8";
2022-04-24 09:10:04 +01:00
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-/4IHqAoJthKvNyKqUgnGOQkgbC0aBEZ+x6dmKWUHXh0=";
2022-01-18 21:28:00 +00:00
};
meta = with lib; {
description = "Colour your text / terminal to be more gay";
longDescription = ''
Applies pride flag colors to text, ala lolcat or displays a pride flag.
'';
homepage = "https://github.com/ms-jpq/gay";
maintainers = with maintainers; [ CodeLongAndProsper90 ];
license = licenses.mit;
};
}