summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.14.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-07-01 16:26:12 -0400
committerTim Steinbach <tim@nequissimus.com>2020-07-01 16:26:12 -0400
commit22fd414ffc4e82bd20ba5080f8d8ae12e88abb70 (patch)
tree05f1787bf4ff9f2d95a3fd224f9a1226aa4db514 /pkgs/os-specific/linux/kernel/linux-4.14.nix
parent2396eb646d75875722a939688ba808a495893e20 (diff)
downloadnixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.tar
nixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.tar.gz
nixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.tar.bz2
nixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.tar.lz
nixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.tar.xz
nixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.tar.zst
nixpkgs-22fd414ffc4e82bd20ba5080f8d8ae12e88abb70.zip
linux: 4.14.186 -> 4.14.187
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.14.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.14.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index fccbd29777e..8970f51203a 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.14.186";
+  version = "4.14.187";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "0q52fmkiqa9hpdkf0wlpcqnc6wqssqz6cgfk1ix1anq0h5hl4ns4";
+    sha256 = "1gal2kfyrq8c4dswlwnwmzc3ap6a7cjkyz8jgsm9d8gfx9sk88jv";
   };
 } // (args.argsOverride or {}))