summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.19.nix
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-03-12 07:19:15 +0000
committerTredwellGit <tredwell@tutanota.com>2022-03-12 07:19:15 +0000
commit3d434fc0d91719aad30d1ddca5528e3dd34ed186 (patch)
tree632062f4f29e1e4b898c79add684e4f9718566d5 /pkgs/os-specific/linux/kernel/linux-4.19.nix
parentceafc68dce513166735c1dee86e8bc48e30b64df (diff)
downloadnixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.tar
nixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.tar.gz
nixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.tar.bz2
nixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.tar.lz
nixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.tar.xz
nixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.tar.zst
nixpkgs-3d434fc0d91719aad30d1ddca5528e3dd34ed186.zip
linux: 4.19.233 -> 4.19.234
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.19.nix')
-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 ff3b8ea22b6..1ea6bedc003 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.233";
+  version = "4.19.234";
 
   # 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 = "0dyf1xapmhly9gpygyjzj5yhn6s5xb0gss033sgllwn243q6bxmq";
+    sha256 = "12rd468wvmmdmgzy9vs2ny155yp9wxrf15lrslpc8xm4wimrd0h0";
   };
 } // (args.argsOverride or {}))