tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.19.264 -> 4.19.265
Bernardo Meurer
3 years ago
fa300b74
9553d38c
+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.264";
6
6
+
version = "4.19.265";
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 = "07ihf55y4xcbzpfgj9mxzchy1jmdpy46j32w15hac46a4504xcps";
16
16
+
sha256 = "1l5cdpgng1gci1p1gdr2jzqw486h3w56gpyc7fbq74hlc6nnwh1p";
17
17
};
18
18
} // (args.argsOverride or {}))