My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/os-specific/linux/kernel/linux-4.14.nix

16 lines
480 B

{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
7 years ago
with stdenv.lib;
import ./generic.nix (args // rec {
version = "4.14.17";
7 years ago
# 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 = "0jqa86bnnlzv0r0bvzvmbj1c89a5m64zrjfvfrjlwg3vy63r9ii7";
7 years ago
};
} // (args.argsOverride or {}))