about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-05-06 15:56:35 -0400
committerTim Steinbach <tim@nequissimus.com>2020-05-06 15:56:35 -0400
commitac287ce319fe7a52ba0e7d0a2556dff63b84e10b (patch)
tree83b00896b66bc48b3eca2c927557582eb513769f
parentc698c7ed0d1c0df883d5ef9e332b68d925d3c041 (diff)
downloadnixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.tar
nixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.tar.gz
nixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.tar.bz2
nixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.tar.lz
nixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.tar.xz
nixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.tar.zst
nixlib-ac287ce319fe7a52ba0e7d0a2556dff63b84e10b.zip
linux: 4.19.120 -> 4.19.121
-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 4edc8359c51e..450c44f0aa09 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.120";
+  version = "4.19.121";
 
   # 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 = "03mjng5ws9y56id99619ysarz73qqyylgc3mlknga1yphbhh16qb";
+    sha256 = "11bhjdaihhc42xhf4qxdkkjznc0i6igh0ahjbzr3fb8bmq9sirgv";
   };
 } // (args.argsOverride or {}))