tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 5.4.81 -> 5.4.83
Tim Steinbach
5 years ago
c020baa6
6ce57b79
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-5.4.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-5.4.nix
···
3
with stdenv.lib;
4
5
buildLinux (args // rec {
6
-
version = "5.4.81";
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 = "09w4bpr3v9rzcvxics5wddabplwbpk1mynl45lh9csbjfpjbsw4l";
17
};
18
} // (args.argsOverride or {}))
···
3
with stdenv.lib;
4
5
buildLinux (args // rec {
6
+
version = "5.4.83";
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 = "1ik14pfgynkn1sjhgyhgmxjvviq0mgvk0ygj76w8mplkpc5rgv5y";
17
};
18
} // (args.argsOverride or {}))