From 2442167ed1e1bf1901bede42c6cee2bd767b849d Mon Sep 17 00:00:00 2001 From: Nadir Ishiguro <23151917+nadir-ishiguro@users.noreply.github.com> Date: Thu, 31 Jul 2025 15:12:58 +0200 Subject: [PATCH] kopia: replace gitUpdater with nix-update script gitUpdater does not update vendorHash and thus seems to prevent auto-updates via r-ryantm. --- pkgs/by-name/ko/kopia/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ko/kopia/package.nix b/pkgs/by-name/ko/kopia/package.nix index 871ebd9a1dc4..23ece9ef3d16 100644 --- a/pkgs/by-name/ko/kopia/package.nix +++ b/pkgs/by-name/ko/kopia/package.nix @@ -2,7 +2,7 @@ lib, buildGoModule, fetchFromGitHub, - gitUpdater, + nix-update-script, installShellFiles, stdenv, testers, @@ -38,7 +38,7 @@ buildGoModule rec { ''; passthru = { - updateScript = gitUpdater { rev-prefix = "v"; }; + updateScript = nix-update-script { }; tests = { kopia-version = testers.testVersion { package = kopia;