From 5b3ef25fdc74603f08df8f48bfdbb777dfe308a6 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Thu, 25 Dec 2025 17:48:45 -0500 Subject: [PATCH] findutils: set passthru.updateScript --- pkgs/tools/misc/findutils/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix index e7d4f5bbd34d..10b2c99391cc 100644 --- a/pkgs/tools/misc/findutils/default.nix +++ b/pkgs/tools/misc/findutils/default.nix @@ -4,6 +4,7 @@ fetchurl, updateAutotoolsGnuConfigScriptsHook, coreutils, + directoryListingUpdater, }: # Note: this package is used for bootstrapping fetchurl, and thus @@ -75,6 +76,11 @@ stdenv.mkDerivation rec { # or you can check libc/include/sys/cdefs.h in bionic source code hardeningDisable = lib.optional (stdenv.hostPlatform.libc == "bionic") "fortify"; + passthru.updateScript = directoryListingUpdater { + inherit pname version; + url = "https://ftp.gnu.org/gnu/findutils/"; + }; + meta = { homepage = "https://www.gnu.org/software/findutils/"; description = "GNU Find Utilities, the basic directory searching utilities of the GNU operating system";