8525b78d05
`kernel.override { features = ... }` didn't work before, now it works as expected.
11 lines
351 B
Nix
11 lines
351 B
Nix
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "4.13.2";
|
|
extraMeta.branch = "4.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
|
|
sha256 = "1lgwgw9yp5ywbylnmahsmqzs98yfq53mvvqqdgp7ljiqg8bxqjh6";
|
|
};
|
|
} // (args.argsOverride or {}))
|