Skip to content

Commit 6ae02e4

Browse files
committed
mnt-reform: Add name parameter to kernel patches
1 parent a31d53a commit 6ae02e4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

mnt/reform/kernel.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ let
3030
};
3131

3232
kernelPatches =
33-
(map (patch: { patch = "${reformDebianPackages}/${patch}"; }) (import ./kernelPatches.nix))
33+
(map (patch: {
34+
name = patch;
35+
patch = "${reformDebianPackages}/${patch}";
36+
}) (import ./kernelPatches.nix))
3437
++ [
3538
{
3639
name = "reform-dts";

0 commit comments

Comments
 (0)