gnumake: set passthru.updateScript

This commit is contained in:
Michael Daniels
2025-12-26 20:17:54 -05:00
parent dad138e3de
commit 1c96fc4586
@@ -9,6 +9,7 @@
inBootstrap ? false,
pkg-config,
gnumake,
directoryListingUpdater,
}:
let
@@ -52,9 +53,15 @@ stdenv.mkDerivation rec {
];
separateDebugInfo = true;
passthru.tests = {
# make sure that the override doesn't break bootstrapping
gnumakeWithGuile = gnumake.override { guileSupport = true; };
passthru = {
tests = {
# make sure that the override doesn't break bootstrapping
gnumakeWithGuile = gnumake.override { guileSupport = true; };
};
updateScript = directoryListingUpdater {
inherit pname version;
url = "https://ftp.gnu.org/gnu/make/";
};
};
meta = {