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

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

21 lines
480 B
Nix
Raw Normal View History

2022-12-30 21:33:00 +00:00
{ lib,
python3,
}:
2022-01-18 21:28:00 +00:00
2022-12-30 21:33:00 +00:00
python3.pkgs.buildPythonApplication rec {
2022-01-23 04:20:00 +00:00
pname = "gay";
2022-12-30 21:33:00 +00:00
version = "1.2.9";
2022-01-18 21:28:00 +00:00
2022-12-30 21:33:00 +00:00
src = python3.pkgs.fetchPypi {
2022-04-24 08:10:04 +00:00
inherit pname version;
2022-12-30 21:33:00 +00:00
hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
2022-01-18 21:28:00 +00:00
};
meta = with lib; {
homepage = "https://github.com/ms-jpq/gay";
2022-12-30 21:33:00 +00:00
description = "Colour your text / terminal to be more gay";
2022-01-18 21:28:00 +00:00
license = licenses.mit;
2022-12-30 21:33:00 +00:00
maintainers = with maintainers; [ AndersonTorres CodeLongAndProsper90 ];
2022-01-18 21:28:00 +00:00
};
}