tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.14.252 -> 4.14.253
TredwellGit
4 years ago
20e62a2b
66f62494
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel
linux-4.14.nix
+2
-2
pkgs/os-specific/linux/kernel/linux-4.14.nix
···
3
with lib;
4
5
buildLinux (args // rec {
6
-
version = "4.14.252";
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/v4.x/linux-${version}.tar.xz";
16
-
sha256 = "022rw51s8fzz6wcxa9xq6h60fglfx0hq7bmqgs5dlrci6plv4fwk";
17
};
18
} // (args.argsOverride or {}))
···
3
with lib;
4
5
buildLinux (args // rec {
6
+
version = "4.14.253";
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/v4.x/linux-${version}.tar.xz";
16
+
sha256 = "1mgl55c8fa2ry4qp0phkdkzjhwfnkbhvi266n348kyjyqnjl234f";
17
};
18
} // (args.argsOverride or {}))