tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 5.10.75 -> 5.10.76
TredwellGit
4 years ago
4bd2c087
19735ff2
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-5.10.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-5.10.nix
···
3
with lib;
4
5
buildLinux (args // rec {
6
-
version = "5.10.75";
7
8
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
9
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
···
13
14
src = fetchurl {
15
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
16
-
sha256 = "0jrhhk89587caw54nhnwms93kq33qdm75x5f18cp61xrxxgjyaqa";
17
};
18
} // (args.argsOverride or {}))
···
3
with lib;
4
5
buildLinux (args // rec {
6
+
version = "5.10.76";
7
8
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
9
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
···
13
14
src = fetchurl {
15
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
16
+
sha256 = "140qkvs88b5zh6mxxzpf36z1r8bbvyh3yigripqjz1k236x0j2j8";
17
};
18
} // (args.argsOverride or {}))