about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-09-23 08:47:15 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:51:49 +0000
commit673e5811b84c1a12ab568658c6700e03f98dab39 (patch)
tree4ce8ca4083a17c1f6ee561c594d3a374c394831d /nixpkgs
parentf61b969f514b64af2161e16f9cdd2c7c989186f6 (diff)
downloadnixlib-673e5811b84c1a12ab568658c6700e03f98dab39.tar
nixlib-673e5811b84c1a12ab568658c6700e03f98dab39.tar.gz
nixlib-673e5811b84c1a12ab568658c6700e03f98dab39.tar.bz2
nixlib-673e5811b84c1a12ab568658c6700e03f98dab39.tar.lz
nixlib-673e5811b84c1a12ab568658c6700e03f98dab39.tar.xz
nixlib-673e5811b84c1a12ab568658c6700e03f98dab39.tar.zst
nixlib-673e5811b84c1a12ab568658c6700e03f98dab39.zip
linux: 5.4.66 -> 5.4.67
(cherry picked from commit fbbea8cc565e5b4d9f838a3c338b537853b4760f)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 90f191c3681b..046007c58e64 100644
--- a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.4.66";
+  version = "5.4.67";
 
   # 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 = "1cnsrz21kcf0h7krpv9p1a7n59mybr5ii0jdi3yc3x3lcwvk06gz";
+    sha256 = "196avi0950qrd0lxdpdsl6lxa51f20sz476mcl1i5islbnfbsxf1";
   };
 } // (args.argsOverride or {}))