From 3c179aaa723ecc0e1fb208b5f1946beddc5a4f72 Mon Sep 17 00:00:00 2001 From: Aleksana Date: Tue, 28 May 2024 19:43:08 +0800 Subject: [PATCH] =?UTF-8?q?smile:=202.9.0=20=E2=86=92=202.9.5=20(#314521)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/sm/smile/package.nix | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/pkgs/by-name/sm/smile/package.nix b/pkgs/by-name/sm/smile/package.nix index 1c95965fde22..328517714197 100644 --- a/pkgs/by-name/sm/smile/package.nix +++ b/pkgs/by-name/sm/smile/package.nix @@ -13,28 +13,20 @@ python3.pkgs.buildPythonApplication rec { pname = "smile"; - version = "2.9.0"; - format = "other"; + version = "2.9.5"; + pyproject = false; # Builds with meson src = fetchFromGitHub { owner = "mijorus"; repo = "smile"; rev = version; - hash = "sha256-tXbRel+rtaE2zPO8NOc4X+Ktk4PdRHBMtpsGLbvuHZk="; + hash = "sha256-WwkwJXRnIvBS0cdcmJhErZLe0wwvarUdE7rpx7qcd2E="; }; - postPatch = '' - patchShebangs build-aux/meson/postinstall.py - - substituteInPlace build-aux/meson/postinstall.py \ - --replace-fail gtk-update-icon-cache gtk4-update-icon-cache - ''; - nativeBuildInputs = [ desktop-file-utils # for update-desktop-database glib # for glib-compile-resources gobject-introspection - gtk4 # for gtk4-update-icon-cache meson ninja wrapGAppsHook4 @@ -44,7 +36,7 @@ python3.pkgs.buildPythonApplication rec { libadwaita ]; - propagatedBuildInputs = with python3.pkgs; [ + dependencies = with python3.pkgs; [ dbus-python manimpango pygobject3 @@ -63,6 +55,6 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://mijorus.it/projects/smile/"; license = lib.licenses.gpl3Plus; mainProgram = "smile"; - maintainers = with lib.maintainers; [ koppor ]; + maintainers = with lib.maintainers; [ koppor aleksana ]; }; }