about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-06-25 09:17:06 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:49:12 +0000
commitf96495f0e5e6cd04f21684688096f547efe23960 (patch)
treed1e8b1e9aecfe68094c0f403696b7352c0574756 /nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix
parent60d8371ab0841e460b4b0375a8d26640c37a6859 (diff)
downloadnixlib-f96495f0e5e6cd04f21684688096f547efe23960.tar
nixlib-f96495f0e5e6cd04f21684688096f547efe23960.tar.gz
nixlib-f96495f0e5e6cd04f21684688096f547efe23960.tar.bz2
nixlib-f96495f0e5e6cd04f21684688096f547efe23960.tar.lz
nixlib-f96495f0e5e6cd04f21684688096f547efe23960.tar.xz
nixlib-f96495f0e5e6cd04f21684688096f547efe23960.tar.zst
nixlib-f96495f0e5e6cd04f21684688096f547efe23960.zip
linux: 5.4.48 -> 5.4.49
(cherry picked from commit 5d807cc8d79fd1999a90fc90d7c8441717c295e9)
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/kernel/linux-5.4.nix')
-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 006f469aa988..a20f401b80d6 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.48";
+  version = "5.4.49";
 
   # 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 = "0lqxryxn0bfly337ddhl7m7qdwblxg8i1fsl8v9i9h84rnpxs85z";
+    sha256 = "0g2psjf2q10mfc3vv6brjn6s2nkg73ll1s04gpshw907d9irpn2m";
   };
 } // (args.argsOverride or {}))