summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:15 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:15 +0000
commit82af4b58ee24caaec68e3803763c0e6dbedf3784 (patch)
treec20598c876cf9fceeb5d88b6d39df9b7b5531c5b /pkgs/os-specific
parent8472d44b82084f8b638b0dca248fae61b9bd1bad (diff)
downloadnixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.tar
nixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.tar.gz
nixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.tar.bz2
nixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.tar.lz
nixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.tar.xz
nixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.tar.zst
nixpkgs-82af4b58ee24caaec68e3803763c0e6dbedf3784.zip
linux: 4.14.239 -> 4.14.240
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 5b94b7ea9b6..ccecc433a4a 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 lib;
 
 buildLinux (args // rec {
-  version = "4.14.239";
+  version = "4.14.240";
 
   # 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,7 +13,7 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "167zwm3giizv42m0xjz71xnb2swlwiaw0xw0dg8j8mb74hz1drx0";
+    sha256 = "1k65qwzlnqnh9ym0n2fxpa8nk2qwvykwhwgaixk3b7ndzmr8b6c8";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_14 ];