summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-5.4.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-01-24 12:27:20 -0500
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-01-24 18:17:56 -0500
commitd3cf0f85c532e1bf4159e0031da0e48ce6a16764 (patch)
treee2751b73c82222721c57a8b92813180f9cb49afa /pkgs/os-specific/linux/kernel/linux-5.4.nix
parent92a6788df30482c71210f51ec3c942dbc60d06be (diff)
downloadnixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.tar
nixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.tar.gz
nixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.tar.bz2
nixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.tar.lz
nixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.tar.xz
nixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.tar.zst
nixpkgs-d3cf0f85c532e1bf4159e0031da0e48ce6a16764.zip
linux: 5.4.91 -> 5.4.92
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-5.4.nix')
-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 28a481b2f8a..0469b731b89 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 lib;
 
 buildLinux (args // rec {
-  version = "5.4.91";
+  version = "5.4.92";
 
   # 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 = "05swzh4gb0mk6wzza0k6b0283cygkvj8a2d2b2gab6sb0fxn208f";
+    sha256 = "1zcl4dadyfrgmx6rh0ncy403rsqb1qs092m6zr6b3i14i3wpz4y0";
   };
 } // (args.argsOverride or {}))