From 75cb365fa2695c98db5571f74997117ca6012cd9 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 23 Jan 2022 04:20:00 +0000 Subject: [PATCH] gay: fix package --- pkgs/tools/misc/gay/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/gay/default.nix b/pkgs/tools/misc/gay/default.nix index 3c034e43a8e9..799473a4b9f2 100644 --- a/pkgs/tools/misc/gay/default.nix +++ b/pkgs/tools/misc/gay/default.nix @@ -1,7 +1,7 @@ -{ lib, python39Packages, fetchFromGitHub }: +{ lib, python3Packages, fetchFromGitHub }: -python39Packages.buildPythonApplication rec { - name = "gay"; +python3Packages.buildPythonApplication rec { + pname = "gay"; version = "1.2.8"; src = fetchFromGitHub { @@ -21,6 +21,5 @@ python39Packages.buildPythonApplication rec { homepage = "https://github.com/ms-jpq/gay"; maintainers = with maintainers; [ CodeLongAndProsper90 ]; license = licenses.mit; - platforms = platforms.all; }; }