summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-12-31 13:24:22 -0500
committerTim Steinbach <tim@nequissimus.com>2019-12-31 13:32:18 -0500
commitaa74012d32ebd29ea0478e5bf7cb19b6af4f009b (patch)
treedf8c826e6973ae5341142d724d3ae60f5e2af2c0 /pkgs/os-specific/linux/kernel
parentf9eae426403185a391e25748915ec9af0b138283 (diff)
downloadnixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.tar
nixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.tar.gz
nixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.tar.bz2
nixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.tar.lz
nixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.tar.xz
nixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.tar.zst
nixpkgs-aa74012d32ebd29ea0478e5bf7cb19b6af4f009b.zip
linux: 5.4.6 -> 5.4.7
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 8fdb4f47e4f..0eb57180644 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.6";
+  version = "5.4.7";
 
   # 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 = "1j4916izy2nrzq7g6m5m365r60hhhx9rqcanjvaxv5x3vsy639gx";
+    sha256 = "1jgwg5qb7lb30m5ywvpfagzrl6d0i524qpy3v99mina6j4fv5jdb";
   };
 } // (args.argsOverride or {}))