nixpkgs/pkgs/build-support/fetchdebianpatch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
417 B
Nix
Raw Normal View History

2023-08-29 20:09:47 +00:00
{ lib, fetchpatch }:
lib.makeOverridable (
{ pname, version, debianRevision ? null, name, hash, area ? "main" }:
let versionString =
if debianRevision == null then version else "${version}-${debianRevision}";
in fetchpatch {
url =
"https://sources.debian.org/data/${area}/${builtins.substring 0 1 pname}/"
+ "${pname}/${versionString}/debian/patches/${name}.patch";
inherit hash;
}
)