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-09-03 12:58:35 -0400
committerTim Steinbach <tim@nequissimus.com>2020-09-03 14:15:01 -0400
commit1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2 (patch)
treed92e83fa9de2efc3269728d2326eaa3540e1bc10 /pkgs/os-specific/linux/kernel/linux-4.19.nix
parentac9685996b9338be422620f65e3131a4329ce5eb (diff)
downloadnixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.tar
nixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.tar.gz
nixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.tar.bz2
nixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.tar.lz
nixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.tar.xz
nixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.tar.zst
nixpkgs-1272d20c2e3c15ca5bc4535d6f3dd92aa5f894c2.zip
linux: 4.19.142 -> 4.19.143
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 2eb697be684..c683b222f0c 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.142";
+  version = "4.19.143";
 
   # 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 = "19372sri4962dqf5rbr211lrfpckmj11kxsginfcwwid4hfdn4k9";
+    sha256 = "1383yfwb962mhn25b3b3zqrwnpyp01g5xclsv14wra0fdz33ahra";
   };
 } // (args.argsOverride or {}))