1
0
Fork 0
nixpkgs-overlay/default.nix

20 lines
441 B
Nix
Raw Normal View History

2020-11-04 22:54:05 +01:00
self: super:
let
lib = self.lib;
callPackage = super.lib.callPackageWith self;
in
with self; rec {
linux_5_9 = callPackage ./pkgs/linux/linux-5.9.nix {
kernelPatches = [
kernelPatches.bridge_stp_helper
kernelPatches.request_key_helper
kernelPatches.export_kernel_fpu_functions."5.3"
];
};
linuxPackages_5_9 = recurseIntoAttrs (linuxPackagesFor linux_5_9);
linuxPackages_latest = linuxPackages_5_9;
2020-11-04 22:54:05 +01:00
}