about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/gay/default.nix
blob: d1129702f867ae0d8f24a95f7437bfc0da8f0873 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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";
  };
}