tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.17.5 -> 4.17.6
Tim Steinbach
7 years ago
b34a147e
ed9578b7
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-4.17.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-4.17.nix
···
3
3
with stdenv.lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "4.17.5";
6
6
+
version = "4.17.6";
7
7
8
8
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
9
9
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${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 = "1brfnabv5lprghfyxpdr0b5z2sqdygh50j61swrk6wzzbmk0ci9z";
16
16
+
sha256 = "15b3k79cjlgrc4q39p1laxz2p102d6a7bpfq0mh9724qs64xd795";
17
17
};
18
18
} // (args.argsOverride or {}))