From caa704f0c7618ba6a175cec4a1124b7af37c5cb5 Mon Sep 17 00:00:00 2001 From: Anton Mosich Date: Sat, 20 Jun 2026 20:45:41 +0200 Subject: [PATCH 1/2] pimsync: 0.5.9 -> 0.5.10 See https://pimsync.whynothugo.nl/changelog.html#v0-5-10 for the changelog --- pkgs/by-name/pi/pimsync/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pi/pimsync/package.nix b/pkgs/by-name/pi/pimsync/package.nix index 630fa8ce4074..27822ef73d98 100644 --- a/pkgs/by-name/pi/pimsync/package.nix +++ b/pkgs/by-name/pi/pimsync/package.nix @@ -7,22 +7,23 @@ installShellFiles, makeWrapper, xandikos, + cacert, versionCheckHook, nix-update-script, }: rustPlatform.buildRustPackage (finalAttrs: { pname = "pimsync"; - version = "0.5.9"; + version = "0.5.10"; src = fetchFromSourcehut { owner = "~whynothugo"; repo = "pimsync"; rev = "v${finalAttrs.version}"; - hash = "sha256-bNE0YY7bws8lEGoVg/sXuepBU1/oJPWBdn1wBGzF8s8="; + hash = "sha256-YqLOkv0I+1HOlWNA8HoKB6/3ccYbV8u/0BJ/+4xvde4="; }; - cargoHash = "sha256-w3o3qxe/EADeH6LDwBxm0kvdYuwEcuj8GcoVPtBqylA="; + cargoHash = "sha256-9sEYeKZDMsbEUQc5V8xJzcKIzF6ugGsk3d5bTOCtYnw="; env.PIMSYNC_VERSION = finalAttrs.version; @@ -38,6 +39,7 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeCheckInputs = [ xandikos + cacert ]; postInstall = '' From e40cf6e6cab1ae09e5ae6085b0b8986d829f0186 Mon Sep 17 00:00:00 2001 From: Anton Mosich Date: Sat, 20 Jun 2026 20:50:53 +0200 Subject: [PATCH 2/2] pimsync: add antonmosich as maintainer --- pkgs/by-name/pi/pimsync/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/pi/pimsync/package.nix b/pkgs/by-name/pi/pimsync/package.nix index 27822ef73d98..d9ba3e201adb 100644 --- a/pkgs/by-name/pi/pimsync/package.nix +++ b/pkgs/by-name/pi/pimsync/package.nix @@ -63,7 +63,10 @@ rustPlatform.buildRustPackage (finalAttrs: { }"; license = lib.licenses.eupl12; platforms = lib.platforms.unix; - maintainers = [ lib.maintainers.qxrein ]; + maintainers = [ + lib.maintainers.qxrein + lib.maintainers.antonmosich + ]; mainProgram = "pimsync"; }; })