summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-01-05 16:12:00 -0500
committerTim Steinbach <tim@nequissimus.com>2020-01-05 16:12:00 -0500
commitaf5f1eb6c6a46eaf50c04cc339a53bbe1714fdae (patch)
treeeef50945de3f94f57450c682adbef443d1386682 /pkgs/os-specific
parent0afc8450fd8638c0edd7a804663d1cfb178d3dab (diff)
downloadnixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.tar
nixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.tar.gz
nixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.tar.bz2
nixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.tar.lz
nixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.tar.xz
nixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.tar.zst
nixpkgs-af5f1eb6c6a46eaf50c04cc339a53bbe1714fdae.zip
linux: 5.4.7 -> 5.4.8
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 0eb57180644..89cbf776ac0 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.7";
+  version = "5.4.8";
 
   # 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 = "1jgwg5qb7lb30m5ywvpfagzrl6d0i524qpy3v99mina6j4fv5jdb";
+    sha256 = "0llss8hbzkwqxx92y419vj2jvq0d8k52iivh3f59wgqr0b4i9i22";
   };
 } // (args.argsOverride or {}))