summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-12-11 10:56:34 -0500
committerTim Steinbach <tim@nequissimus.com>2020-12-11 12:42:11 -0500
commit28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8 (patch)
treeb2d0ebb401cfceb4de7bfe1e8cf4edadd3deb9bf /pkgs/os-specific
parent0cbede4c78dc00358dedf45dc3e7b7e15c804cff (diff)
downloadnixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.tar
nixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.tar.gz
nixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.tar.bz2
nixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.tar.lz
nixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.tar.xz
nixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.tar.zst
nixpkgs-28fb10a34a0c6f3fa6e1f0ae0296ee56ab220fd8.zip
linux: 4.14.210 -> 4.14.212
Diffstat (limited to 'pkgs/os-specific')
-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 26694d965e7..f4404cae6f4 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.210";
+  version = "4.14.212";
 
   # 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 = "067xqi6sgf50p7s3n6y77cgf5bj5062s3bz3kqpp6f9wnk85267r";
+    sha256 = "0y8ck8pfxm8862wi4cz8qp9x9b18yl448i8m7bpbphs290nc66qf";
   };
 } // (args.argsOverride or {}))