Commit 741ed30e authored by nicoo's avatar nicoo
Browse files

fetchDebianPatch: init

parent e2b42410
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
{ 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;
  }
)
+2 −0
Original line number Diff line number Diff line
@@ -1173,6 +1173,8 @@ with pkgs;
      tests = pkgs.tests.fetchzip;
    };
  fetchDebianPatch = callPackage ../build-support/fetchdebianpatch { };
  fetchCrate = callPackage ../build-support/rust/fetchcrate.nix { };
  fetchFromGitea = callPackage ../build-support/fetchgitea { };