tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
linux: 4.14.11 -> 4.14.12
Tim Steinbach
8 years ago
b5ce6022
ad4d26f5
+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
3
with stdenv.lib;
4
4
5
5
import ./generic.nix (args // rec {
6
6
-
version = "4.14.11";
6
6
+
version = "4.14.12";
7
7
8
8
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
9
9
modDirVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
···
13
13
14
14
src = fetchurl {
15
15
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
16
16
-
sha256 = "02kdp2k27gqqfxjv78wqlvqn1niin72masxs97mlw79za5m9as3p";
16
16
+
sha256 = "1bsn73h3ilf7msyiqm5ny2zdj30b9r7k9sc8i03w3iggh3agf236";
17
17
};
18
18
} // (args.argsOverride or {}))