summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-02-01 10:30:57 -0500
committerTim Steinbach <tim@nequissimus.com>2021-02-01 15:22:18 -0500
commite829b8379c652325a40dcdc726bb364a4a7b6ea4 (patch)
tree4233cd8b0e8f54482f60f87104b4c74bc28c7b44 /pkgs/os-specific
parentab661e6635bfa694cbf3109e3d8955ee3c66de78 (diff)
downloadnixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.tar
nixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.tar.gz
nixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.tar.bz2
nixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.tar.lz
nixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.tar.xz
nixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.tar.zst
nixpkgs-e829b8379c652325a40dcdc726bb364a4a7b6ea4.zip
linux: 5.4.93 -> 5.4.94
Diffstat (limited to 'pkgs/os-specific')
-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 637b0deb499..c5a245cc237 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.93";
+  version = "5.4.94";
 
   # 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 = "08nmwd13z10866pc16fqbj41krnvk6hxkl4nmhdkpk346r04jx6k";
+    sha256 = "0f9bml584g6jb822j7xyxx9j2g3s49p08xz4bkx9lbiinxyzagf2";
   };
 } // (args.argsOverride or {}))