From 201505e6b7e1c996c63df3aa42403d191f3b42f7 Mon Sep 17 00:00:00 2001 From: Artturin Date: Mon, 17 Feb 2025 18:41:24 +0200 Subject: [PATCH] strip-nondeterminism: Add `updateScript` Still won't be updated by r-ryantm because https://www.github.com/nix-community/nixpkgs-update/blob/ca25a2a7aaa94faeb209bf488c201b34dddcda27/src/Skiplist.hs#L161 --- .../perl-modules/strip-nondeterminism/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/perl-modules/strip-nondeterminism/default.nix b/pkgs/development/perl-modules/strip-nondeterminism/default.nix index 29fa3f1dc900..65884a494404 100644 --- a/pkgs/development/perl-modules/strip-nondeterminism/default.nix +++ b/pkgs/development/perl-modules/strip-nondeterminism/default.nix @@ -8,6 +8,7 @@ ArchiveCpio, SubOverride, shortenPerlShebang, + gitUpdater, }: buildPerlPackage rec { @@ -64,6 +65,10 @@ buildPerlPackage rec { doCheck = !stdenv.hostPlatform.isDarwin; doInstallCheck = true; + passthru = { + updateScript = gitUpdater { }; + }; + meta = with lib; { description = "Perl module for stripping bits of non-deterministic information"; mainProgram = "strip-nondeterminism";