depot/third_party/nixpkgs/pkgs/tools/misc/gay/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

20 lines
480 B
Nix

{ lib,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "gay";
version = "1.2.9";
src = python3.pkgs.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 ];
};
}