nixpkgs/pkgs/os-specific/linux/kernel/2.6.21-ck.nix

14 lines
231 B
Nix
Raw Normal View History

args:
(import ./2.6.21.nix)
( args //
{
extraPatches = (if (args ? extraPatches) args.extraPatches else []) ++
[
{
name = "Con Kolivas Patch";
patch = ./patch-2.6.21-ck1;
}
];
}
)