about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-04-13 08:36:27 -0400
committerTim Steinbach <tim@nequissimus.com>2020-04-13 08:36:27 -0400
commitbba4a30f8ccebca8163d8404fc4bc86229106422 (patch)
tree97b534a4402b92038cd076c565bd85038f55c6ec /pkgs/os-specific
parent2b6e16abe0c8ce5e3103fb84a7ba2987178f640a (diff)
downloadnixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.tar
nixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.tar.gz
nixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.tar.bz2
nixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.tar.lz
nixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.tar.xz
nixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.tar.zst
nixlib-bba4a30f8ccebca8163d8404fc4bc86229106422.zip
linux: 5.5.16 -> 5.5.17
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.5.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.5.nix b/pkgs/os-specific/linux/kernel/linux-5.5.nix
index 3b6555bde53d..c4fbe1aea5e9 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.5.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.5.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.5.16";
+  version = "5.5.17";
 
   # 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 = "0207yw1vkyzvnvbfbkyam6nac1dd9p4hmmbqw09ljki0ia531yw5";
+    sha256 = "06aqhlysa7zdj6c69hyii3hfqlfa9751ivga38rbqw1lr2gbbnj0";
   };
 } // (args.argsOverride or {}))