about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-08-03 16:09:42 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:50:03 +0000
commit1868e693dead4da516f9867e92db5b66e4a4cc54 (patch)
tree9030145cd44abed21e76332fcb6cddd7cb1565c4
parentfc2fc581b9fc9093abe11b7aa36aaaf443083c4d (diff)
downloadnixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.tar
nixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.tar.gz
nixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.tar.bz2
nixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.tar.lz
nixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.tar.xz
nixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.tar.zst
nixlib-1868e693dead4da516f9867e92db5b66e4a4cc54.zip
linux: 4.19.135 -> 4.19.136
(cherry picked from commit 5b88a328df1fa48eda9b556ada33f11b195d7107)
-rw-r--r--nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix b/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 68733f185c47..6b95647885a7 100644
--- a/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.19.135";
+  version = "4.19.136";
 
   # 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 = "165g6agfvjxi5qi9gm5ilnfn6d01shjwypia3n4370i5lv5cxmrk";
+    sha256 = "0ghnsr6m5cidk3xz8cgkl8mpn0lrn2r4wxmhf4n0wamn5m1kpyci";
   };
 } // (args.argsOverride or {}))