tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.19.213 -> 4.19.214
TredwellGit
4 years ago
b7efb905
20e62a2b
+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 lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "4.19.213";
6
6
+
version = "4.19.214";
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 = "162f5y3jplql3ca5xy889mq6izjinryx2kx16zp582yvsqf8rwiq";
16
16
+
sha256 = "0i08np4gxiks7chp6j328pdqb02apbba53mj4zvxb9v37qpxzqgz";
17
17
};
18
18
} // (args.argsOverride or {}))