tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.14.201 -> 4.14.202
Tim Steinbach
5 years ago
f2d048ae
8a10daf5
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-4.14.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-4.14.nix
···
3
3
with stdenv.lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "4.14.201";
6
6
+
version = "4.14.202";
7
7
8
8
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
9
9
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
···
13
13
14
14
src = fetchurl {
15
15
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
16
16
-
sha256 = "0nr3w5m7dz28v7qfhp99ih4c369qrhq751wfikbz8ga3di0dqa72";
16
16
+
sha256 = "0a739g3s0lc579zp4478xr645qzvhmrm1w19x0rj7p8bbfmigiwm";
17
17
};
18
18
} // (args.argsOverride or {}))