tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 5.15.78 -> 5.15.79
Bernardo Meurer
3 years ago
63adc7fa
bd9a5606
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-5.15.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-5.15.nix
···
3
3
with lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "5.15.78";
6
6
+
version = "5.15.79";
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/v5.x/linux-${version}.tar.xz";
16
16
-
sha256 = "16d4d4g5n2g6jpp8bvad1bm1l0b0nb4ckwsmq6w2g3538xrrzf8d";
16
16
+
sha256 = "0m61k7k6lj24z9a266q08wzghggjik2wizcabdwd1vn0vcqr18yb";
17
17
};
18
18
} // (args.argsOverride or { }))