From 1519c5d166803269f5bb672fdd754e6de939a544 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 22 Jun 2025 22:46:51 +0800 Subject: [PATCH 1/2] gxml: Disable tests No upstream fix for months and this is only used by planify. --- pkgs/by-name/gx/gxml/package.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/gx/gxml/package.nix b/pkgs/by-name/gx/gxml/package.nix index 1ec14d461e72..f28c16d9ff6a 100644 --- a/pkgs/by-name/gx/gxml/package.nix +++ b/pkgs/by-name/gx/gxml/package.nix @@ -54,7 +54,8 @@ stdenv.mkDerivation (finalAttrs: { --replace-fail ">=0" ">= 0" ''; - doCheck = true; + # https://github.com/NixOS/nixpkgs/issues/407969 + doCheck = false; passthru.updateScript = gitUpdater { }; From 28215026fcd44b942f38ac5876e3fcda4f4daed1 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 22 Jun 2025 22:49:46 +0800 Subject: [PATCH 2/2] planify: 4.12.0 -> 4.12.2 https://github.com/alainm23/planify/compare/4.12.0...4.12.2 --- pkgs/by-name/pl/planify/package.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/pl/planify/package.nix b/pkgs/by-name/pl/planify/package.nix index f58c3c9d2f4b..949044555868 100644 --- a/pkgs/by-name/pl/planify/package.nix +++ b/pkgs/by-name/pl/planify/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation rec { pname = "planify"; - version = "4.12.0"; + version = "4.12.2"; src = fetchFromGitHub { owner = "alainm23"; repo = "planify"; rev = version; - hash = "sha256-YgNM+fzss1+Q6Fv9mhedhCorWFnerx5oC3iISEhs6z8="; + hash = "sha256-v5Fwbl02t178t+l+VZybeUojIsblLX3Ws5itAAoEZwI="; }; nativeBuildInputs = [ @@ -69,10 +69,6 @@ stdenv.mkDerivation rec { webkitgtk_6_0 ]; - mesonFlags = [ - "-Dprofile=default" - ]; - meta = with lib; { description = "Task manager with Todoist support designed for GNU/Linux"; homepage = "https://github.com/alainm23/planify";