nixpkgs/pkgs/os-specific/linux/kernel/linux-4.14.nix

19 lines
632 B
Nix
Raw Normal View History

2017-11-13 13:34:36 +00:00
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
with stdenv.lib;
import ./generic.nix (args // rec {
version = "4.14.13";
2017-11-13 13:34:36 +00:00
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
# 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 = "0wjpwhrnnvf6l3zpkkxk34dl722w9yp8j3vnh0xzi3hgb8dnvd2a";
2017-11-13 13:34:36 +00:00
};
} // (args.argsOverride or {}))