summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.19.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-07-01 16:26:38 -0400
committerTim Steinbach <tim@nequissimus.com>2020-07-01 16:26:38 -0400
commit80558c5924d9f639e8b3f1a7c18d82707e7fe62b (patch)
tree720718e97045e4f754f39b1e43aa5055ee08bf57 /pkgs/os-specific/linux/kernel/linux-4.19.nix
parent22fd414ffc4e82bd20ba5080f8d8ae12e88abb70 (diff)
downloadnixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.tar
nixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.tar.gz
nixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.tar.bz2
nixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.tar.lz
nixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.tar.xz
nixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.tar.zst
nixpkgs-80558c5924d9f639e8b3f1a7c18d82707e7fe62b.zip
linux: 4.19.130 -> 4.19.131
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.19.nix')
-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 ba2a293d1b5..fef01ec0868 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.130";
+  version = "4.19.131";
 
   # 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 = "03zhsizj53ngwxn7d4mzix9xbxxd5lhbzrvawvbb91f83pkc14m6";
+    sha256 = "1fk4i7lkbblfbxyp8rmkihcax920hbbygk2xnq2038sbrkvbkpqr";
   };
 } // (args.argsOverride or {}))