From d817ea82ac4b8ecb222b4ba7fceb2bdd0bfaf234 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 7 Sep 2025 18:50:43 +0800 Subject: [PATCH] agenda: 1.1.2 -> 1.2.1 https://github.com/dahenson/agenda/compare/1.1.2...1.2.1 --- pkgs/by-name/ag/agenda/package.nix | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/pkgs/by-name/ag/agenda/package.nix b/pkgs/by-name/ag/agenda/package.nix index b3553b8eb1b5..4fd92b8e78d3 100644 --- a/pkgs/by-name/ag/agenda/package.nix +++ b/pkgs/by-name/ag/agenda/package.nix @@ -3,10 +3,10 @@ stdenv, fetchFromGitHub, nix-update-script, + desktop-file-utils, pantheon, meson, ninja, - python3, pkg-config, vala, gettext, @@ -18,22 +18,22 @@ stdenv.mkDerivation rec { pname = "agenda"; - version = "1.1.2"; + version = "1.2.1"; src = fetchFromGitHub { owner = "dahenson"; repo = "agenda"; - rev = version; - sha256 = "sha256-tzGcqCxIkoBNskpadEqv289Sj5bij9u+LdYySiGdop8="; + tag = version; + hash = "sha256-CjlGkG43FFDdKGuwevBeCCazOzLcH114bqihMWTykC8="; }; nativeBuildInputs = [ + desktop-file-utils gettext glib # for glib-compile-schemas meson ninja pkg-config - python3 vala wrapGAppsHook3 ]; @@ -45,13 +45,6 @@ stdenv.mkDerivation rec { pantheon.granite ]; - postPatch = '' - chmod +x meson/post_install.py - patchShebangs meson/post_install.py - ''; - - doCheck = true; - passthru = { updateScript = nix-update-script { }; }; @@ -62,7 +55,7 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ xiorcale ]; teams = [ teams.pantheon ]; platforms = platforms.linux; - license = licenses.gpl3; + license = licenses.gpl3Plus; mainProgram = "com.github.dahenson.agenda"; }; }