summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-01-18 11:41:12 -0500
committerTim Steinbach <tim@nequissimus.com>2020-01-18 11:41:12 -0500
commitcac9f210cf80b23b6a4d746be3f3ab6cac926637 (patch)
treeafc1776e3b2159c3c94910dea0b0cbfacfb910f8 /pkgs/os-specific
parente14d19be43a5a576b1e72260a3697aa38f7d96d1 (diff)
downloadnixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.tar
nixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.tar.gz
nixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.tar.bz2
nixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.tar.lz
nixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.tar.xz
nixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.tar.zst
nixpkgs-cac9f210cf80b23b6a4d746be3f3ab6cac926637.zip
linux: 4.19.96 -> 4.19.97
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index 6f4594763c8..fc0caad7406 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.19.96";
+  version = "4.19.97";
 
   # 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/v4.x/linux-${version}.tar.xz";
-    sha256 = "0k8xcdmc3jffk4y7vxnwvrjnrzhjcw07ikp5a2c4zhbvpbax3h93";
+    sha256 = "1nln2ksfm0ddkqdmhvxwzqq96av1myx89kr1wxs54m2yw0la7clg";
   };
 } // (args.argsOverride or {}))