d4e265327f
This allows using the fetcher with `invalidateFetcherByDrvHash` for testing.
15 lines
453 B
Nix
15 lines
453 B
Nix
{ lib, fetchpatch }:
|
|
|
|
lib.makeOverridable (
|
|
{ pname, version, debianRevision ? null, patch, hash,
|
|
area ? "main", name ? "${patch}.patch" }:
|
|
let versionString =
|
|
if debianRevision == null then version else "${version}-${debianRevision}";
|
|
in fetchpatch {
|
|
inherit name hash;
|
|
url =
|
|
"https://sources.debian.org/data/${area}/${builtins.substring 0 1 pname}/"
|
|
+ "${pname}/${versionString}/debian/patches/${patch}.patch";
|
|
}
|
|
)
|