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.1 -> 5.1.1
Tim Steinbach
6 years ago
b322b4f0
bb047923
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-5.1.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-5.1.nix
···
3
3
with stdenv.lib;
4
4
5
5
buildLinux (args // rec {
6
6
-
version = "5.1";
6
6
+
version = "5.1.1";
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 = "0hghjkxgf1p8mfm04a9ckjvyrnp71jp3pbbp0qsx35rzwzk7nsnh";
16
16
+
sha256 = "1pcd0npnrjbc01rzmm58gh135w9nm5mf649asqlw50772qa9jkd0";
17
17
};
18
18
} // (args.argsOverride or {}))