mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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>
18 lines
476 B
Nix
18 lines
476 B
Nix
{ stdenv, fetchurl, ... } @ args:
|
|
|
|
import ./generic.nix (args // rec {
|
|
version = "3.10.38";
|
|
extraMeta.branch = "3.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
|
|
sha256 = "1y4aalwf8nh3g5x59zgfjrzs1y4x2cv6c5c981db0ixbn963nbpx";
|
|
};
|
|
|
|
features.iwlwifi = true;
|
|
features.efiBootStub = true;
|
|
features.needsCifsUtils = true;
|
|
features.canDisableNetfilterConntrackHelpers = true;
|
|
features.netfilterRPFilter = true;
|
|
})
|