summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:20 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-20 19:06:20 +0000
commit9c153cccd2e1dbae481ac1578c36017b742adbd2 (patch)
treec19cf55292e2ac7b8bdb6129d71bfb9be1799745 /pkgs/os-specific
parent82af4b58ee24caaec68e3803763c0e6dbedf3784 (diff)
downloadnixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.tar
nixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.tar.gz
nixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.tar.bz2
nixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.tar.lz
nixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.tar.xz
nixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.tar.zst
nixpkgs-9c153cccd2e1dbae481ac1578c36017b742adbd2.zip
linux: 4.19.197 -> 4.19.198
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 3785c6b5536..4ed06ee2205 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 lib;
 
 buildLinux (args // rec {
-  version = "4.19.197";
+  version = "4.19.198";
 
   # 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,7 +13,7 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "10kj442qaky6rpl65k5rrvd3p6mdgz4p321zvf4s312ixfdja0g6";
+    sha256 = "13k0r6a4n8nbni64a18wqzy0pg4vn1zw2li78xrm78rqcrnah85y";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_19 ];