about summary refs log tree commit diff
path: root/overlays/patches/linux/patches.nix
blob: 5b39073228a57010434f8977544b4795ca27dfe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ kernelPatches, fetchpatch, ... } @ args:

(kernelPatches.override (builtins.removeAttrs args [ "kernelPatches" ])) // {
  eve-backlight = {
    name = "eve-backlight";
    patch = fetchpatch {
      url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/patch/?id=f58a435311672305d8747f40e35235f7ed64ae69";
      sha256 = "sha256-MKvQgvxC2CwOFzJSfC4SlAvaLkndZX8+LnF4jneJ4AI=";
    };
  };
}