f620b1b693
- defined buildLinux as generic.nix instead of manual-config.nix. This makes kernel derivations a tad more similar to your typical derivations. - moved $buildRoot to within the source folder, this way it doesn't have to be created before the unpackPhase and make it easier to work on kernel source without running the unpackPhase
18 lines
599 B
Nix
18 lines
599 B
Nix
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
buildLinux (args // rec {
|
|
version = "4.13.16";
|
|
extraMeta.branch = "4.13";
|
|
|
|
# TODO: perhaps try being more concrete (ideally CVE numbers).
|
|
extraMeta.knownVulnerabilities = [
|
|
"ALSA: usb-audio: Fix potential out-of-bound access at parsing SU"
|
|
"eCryptfs: use after free in ecryptfs_release_messaging()"
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
sha256 = "0cf7prqzl1ajbgl98w0symdyn0k5wl5xaf1l5ldgy6l083yg69dh";
|
|
};
|
|
} // (args.argsOverride or {}))
|