nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

linux: 4.14.110 -> 4.14.111

(cherry picked from commit b60ce2e638d6478de94f7e2bff6db417ca116646)

+2 -3
+2 -3
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with stdenv.lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.110"; 6 + version = "4.14.111"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 - modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; 10 9 11 10 # branchVersion needs to be x.y 12 11 extraMeta.branch = concatStrings (intersperse "." (take 2 (splitString "." version))); 13 12 14 13 src = fetchurl { 15 14 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "0wlysm6j8mmfwcja8pxg6a5c611m3x597591hswpm2nwcja3bslr"; 15 + sha256 = "1s56819kkr7h48njk708f9gapy2hr97vxawp5qflv1izamb7s6gq"; 17 16 }; 18 17 } // (args.argsOverride or {}))