summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <NeQuissimus@users.noreply.github.com>2020-10-01 09:01:29 -0400
committerGitHub <noreply@github.com>2020-10-01 09:01:29 -0400
commitb2a80bebe9f17a98296e269eba80e9b5d98d9a2a (patch)
treea90ed2483fabbb44ee975f8ecd502644d5eb1dac /pkgs/os-specific/linux/kernel
parent2f177a2f2160e46299d42473a26329b131c91ed1 (diff)
parent351f71f0d9e8e37c1709ca6af106075a167c8b27 (diff)
downloadnixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.tar
nixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.tar.gz
nixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.tar.bz2
nixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.tar.lz
nixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.tar.xz
nixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.tar.zst
nixpkgs-b2a80bebe9f17a98296e269eba80e9b5d98d9a2a.zip
Merge pull request #99267 from NeQuissimus/linux_4_19_149
linux: 4.19.148 -> 4.19.149
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 70c8f22adde..4fb373b1e42 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.19.148";
+  version = "4.19.149";
 
   # 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 = "0nsmcfyi6drlihj8i8knby4hl93120sx2dfybx4lwvffjd5cf21k";
+    sha256 = "001alvxgyb1n0fgbfi5dkzjviid32lyjfjwd3jwmcallcsdcpkfr";
   };
 } // (args.argsOverride or {}))