about summary refs log tree commit diff
path: root/pkgs/tools/misc/gay
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-12-30 18:33:00 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-12-30 18:33:00 -0300
commit170cf11b98cf18eb36302dc4098d411d6b375beb (patch)
treeb3aca6a747879d997df684242a04465fed85eba4 /pkgs/tools/misc/gay
parentcccb11da53c58e7d3950f202954d3963901f68c1 (diff)
gay: 1.2.8 -> 1.2.9
Diffstat (limited to 'pkgs/tools/misc/gay')
-rw-r--r--pkgs/tools/misc/gay/default.nix19
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/tools/misc/gay/default.nix b/pkgs/tools/misc/gay/default.nix
index 471ac86afcb7e..034dc7af7979f 100644
--- a/pkgs/tools/misc/gay/default.nix
+++ b/pkgs/tools/misc/gay/default.nix
@@ -1,21 +1,20 @@
-{ lib, python3Packages }:
+{ lib,
+  python3,
+}:
 
-python3Packages.buildPythonApplication rec {
+python3.pkgs.buildPythonApplication rec {
   pname = "gay";
-  version = "1.2.8";
+  version = "1.2.9";
 
-  src = python3Packages.fetchPypi {
+  src = python3.pkgs.fetchPypi {
     inherit pname version;
-    sha256 = "sha256-/4IHqAoJthKvNyKqUgnGOQkgbC0aBEZ+x6dmKWUHXh0=";
+    hash = "sha256-x+RVVgQvJwV5j7DLYS7AnXb4OMJ4v+l0awUuonQIgzY=";
   };
 
   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 ];
+    description = "Colour your text / terminal to be more gay";
     license = licenses.mit;
+    maintainers = with maintainers; [ AndersonTorres CodeLongAndProsper90 ];
   };
 }