From 9e7bee8bb553a78f36b9e2b1ca88a66e638cc611 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 11 Jan 2024 16:35:58 +0800 Subject: [PATCH 1/2] halftone: 0.5.0 -> 0.6.0 --- pkgs/applications/graphics/halftone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/halftone/default.nix b/pkgs/applications/graphics/halftone/default.nix index 16859b94a7b6..be56e408d9fe 100644 --- a/pkgs/applications/graphics/halftone/default.nix +++ b/pkgs/applications/graphics/halftone/default.nix @@ -15,13 +15,13 @@ python3Packages.buildPythonApplication rec { pname = "halftone"; - version = "0.5.0"; + version = "0.6.0"; src = fetchFromGitHub { owner = "tfuxu"; repo = pname; rev = version; - hash = "sha256-Yh3LxeO90N45LSefV1RZoO+8C0TUmFELzXaaQ1rCo2o="; + hash = "sha256-7fa6afrGt8SXli2KHzzRIqTBBaN3Hk0coYwxe66jLsg="; }; format = "other"; From 5a94735bb4c7bba4ddce4bab3e0892a77a522ca2 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 11 Jan 2024 16:36:29 +0800 Subject: [PATCH 2/2] halftone: add meta.mainProgram and meta.platforms --- pkgs/applications/graphics/halftone/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/graphics/halftone/default.nix b/pkgs/applications/graphics/halftone/default.nix index be56e408d9fe..81e70e401fc8 100644 --- a/pkgs/applications/graphics/halftone/default.nix +++ b/pkgs/applications/graphics/halftone/default.nix @@ -56,6 +56,8 @@ python3Packages.buildPythonApplication rec { homepage = "https://github.com/tfuxu/halftone"; description = "Simple app for giving images that pixel-art style"; license = licenses.gpl3Plus; + mainProgram = "halftone"; maintainers = with maintainers; [ foo-dogsquared ]; + platforms = platforms.linux; }; }