92f7781f00
kernels: - longterm: 3.4.87 -> 3.4.88 - longterm: 3.10.37 -> 3.10.38 - stable: 3.13.10 -> 3.13.11 - stable: 3.14.1 -> 3.14.2 grsecurity: - test: 3.0-3.14.1-201404241722 -> 3.0-3.14.2-201404270907 NOTE: technically the 3.13 stable kernel is now EOL. However, it will become the long-term grsecurity stable kernel, and will have ongoing support from Canonical. Signed-off-by: Austin Seipp <aseipp@pobox.com>
16 lines
419 B
Nix
16 lines
419 B
Nix
{ stdenv, fetchurl, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "3.4.88";
|
|
extraMeta.branch = "3.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
|
|
sha256 = "0l2ccrsr7ga6rhjb58vq7xxhym7n90m7n181hwpi707wikhz80rd";
|
|
};
|
|
|
|
features.iwlwifi = true;
|
|
features.efiBootStub = true;
|
|
features.needsCifsUtils = true;
|
|
features.netfilterRPFilter = true;
|
|
})
|