summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-09-28 13:01:46 -0400
committerTim Steinbach <tim@nequissimus.com>2020-09-28 19:09:07 -0400
commit8684358830f097e8e8305c292e7f09325ce51267 (patch)
tree984ea685f7062757f06751295fc4f5eb80944057 /pkgs
parent494a0b998a846c2eba2297ce98b52b2176620054 (diff)
downloadnixpkgs-8684358830f097e8e8305c292e7f09325ce51267.tar
nixpkgs-8684358830f097e8e8305c292e7f09325ce51267.tar.gz
nixpkgs-8684358830f097e8e8305c292e7f09325ce51267.tar.bz2
nixpkgs-8684358830f097e8e8305c292e7f09325ce51267.tar.lz
nixpkgs-8684358830f097e8e8305c292e7f09325ce51267.tar.xz
nixpkgs-8684358830f097e8e8305c292e7f09325ce51267.tar.zst
nixpkgs-8684358830f097e8e8305c292e7f09325ce51267.zip
linux: 5.4.67 -> 5.4.68
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 046007c58e6..995b0617d1c 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.4.67";
+  version = "5.4.68";
 
   # 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/v5.x/linux-${version}.tar.xz";
-    sha256 = "196avi0950qrd0lxdpdsl6lxa51f20sz476mcl1i5islbnfbsxf1";
+    sha256 = "1pfn7i75wfkhhlqfs7s6yw6bj0mb8qd9fcg6rdahrp78b9n8g4qf";
   };
 } // (args.argsOverride or {}))