tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
linux: 5.3.4 -> 5.3.5
Tim Steinbach
6 years ago
8aeeb87b
5b93ae12
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-5.3.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-5.3.nix
···
3
3
with stdenv.lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "5.3.4";
6
6
+
version = "5.3.5";
7
7
8
8
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
9
9
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${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 = "0vi4bgcr921z5l6fbcrcgmhaji5gl2avpmp7njna6v0f7sxism0r";
16
16
+
sha256 = "1w2k3q6q9cf3r27z084c9nsxh49bq4cvky39pp6dp3r9zif8rvc0";
17
17
};
18
18
} // (args.argsOverride or {}))