summary refs log tree commit diff
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-01-27 11:47:50 +0000
committerTredwellGit <tredwell@tutanota.com>2022-01-27 11:47:50 +0000
commite0781196f77715c3b703541d17f022d4a346c334 (patch)
treee38b73c661622e9ac02f290b65bd605ca2e4115a
parent388633adc53a20ba253f121370459a8d7cead229 (diff)
downloadnixpkgs-e0781196f77715c3b703541d17f022d4a346c334.tar
nixpkgs-e0781196f77715c3b703541d17f022d4a346c334.tar.gz
nixpkgs-e0781196f77715c3b703541d17f022d4a346c334.tar.bz2
nixpkgs-e0781196f77715c3b703541d17f022d4a346c334.tar.lz
nixpkgs-e0781196f77715c3b703541d17f022d4a346c334.tar.xz
nixpkgs-e0781196f77715c3b703541d17f022d4a346c334.tar.zst
nixpkgs-e0781196f77715c3b703541d17f022d4a346c334.zip
linux: 4.19.225 -> 4.19.226
-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 5953b9ff22c..98cc1392734 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 lib;
 
 buildLinux (args // rec {
-  version = "4.19.225";
+  version = "4.19.226";
 
   # 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 = "15k7b04zx5ggfjagp8sfrylr9xgwgz3hb2bygdml7ka1jnbv76jb";
+    sha256 = "1b9qvl994n09708sql3q3g5l3xq2hxam83fnws5asd8mdnk7i7wk";
   };
 } // (args.argsOverride or {}))