fetchFromSourcehut: allow passthru args

This commit is contained in:
winston 2025-09-09 16:02:31 +02:00
parent 66eba50c00
commit b80554483b
No known key found for this signature in database
GPG key ID: 3786770EDBC2B481

View file

@ -82,7 +82,7 @@ makeOverridable (
postFetch = optionalString (vc == "hg") '' postFetch = optionalString (vc == "hg") ''
rm -f "$out/.hg_archival.txt" rm -f "$out/.hg_archival.txt"
''; # impure file; see #12002 ''; # impure file; see #12002
passthru = { passthru = (args.passthru or { }) // {
gitRepoUrl = urlFor "git"; gitRepoUrl = urlFor "git";
}; };
}; };