tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.19.161 -> 4.19.163
Tim Steinbach
5 years ago
1f8f6656
28fb10a3
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-4.19.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-4.19.nix
···
3
3
with stdenv.lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "4.19.161";
6
6
+
version = "4.19.163";
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 = "0h9wskmz9wridwnicnjlcmj1112qnlvqk01bhjkxv6b8jsajjh87";
16
16
+
sha256 = "1z65iwwyx2b01fncygckmhpxirzs52qfqmv3agirn4laxgjw9viy";
17
17
};
18
18
} // (args.argsOverride or {}))