summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-04-02 10:02:52 -0400
committerTim Steinbach <tim@nequissimus.com>2020-04-02 10:02:52 -0400
commitbf0b6ab80962ebfba4b6638047179ba3ce16c8ec (patch)
tree9dfca85d11ee4fb7e3a68e58d204ed8e424b5c9d /pkgs/os-specific/linux/kernel
parentd47ba3e4b5a0392080d09c9c1e288fb1f5d24e21 (diff)
downloadnixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.tar
nixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.tar.gz
nixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.tar.bz2
nixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.tar.lz
nixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.tar.xz
nixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.tar.zst
nixpkgs-bf0b6ab80962ebfba4b6638047179ba3ce16c8ec.zip
linux: 5.4.29 -> 5.4.30
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-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 90389a79a2e..21f7bb88832 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.29";
+  version = "5.4.30";
 
   # 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 = "1jssjnhwjh1my42vskm9h2b7rpc0ncvf2428y2aqm558ihia9ln7";
+    sha256 = "1vwx6j87pkfyq68chng1hy0c85hpc2byabiv1pcikrmw07vpip8i";
   };
 } // (args.argsOverride or {}))