nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix
2018-04-12 11:36:58 -04:00

16 lines
470 B
Nix

{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
version = "4.14.34";
# branchVersion needs to be x.y
extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version)));
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "1f9bl4qw61xw49y5xz1wyilg8gh0wv9k868fh8n3hp17hm66qavq";
};
} // (args.argsOverride or {}))