summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-10-29 08:09:36 -0400
committerTim Steinbach <tim@nequissimus.com>2019-10-29 09:20:56 -0400
commit39aa4c606b8b8d7b33f99248eabb09acc5365ea2 (patch)
tree11a6ae4726e71ee734c232cdbed3168d3b8b54c1 /pkgs/os-specific/linux
parenta68c650a343d13315e02452323559645631ccf07 (diff)
downloadnixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.tar
nixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.tar.gz
nixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.tar.bz2
nixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.tar.lz
nixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.tar.xz
nixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.tar.zst
nixpkgs-39aa4c606b8b8d7b33f99248eabb09acc5365ea2.zip
linux: 4.19.80 -> 4.19.81
Diffstat (limited to 'pkgs/os-specific/linux')
-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 c63d78391b8..e3a9b79e235 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.80";
+  version = "4.19.81";
 
   # 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 = "1v776s6q5wxn8ci86dwa8s8y41b94g09fnpgvzysg2h89rvbmac0";
+    sha256 = "17g2wiaa7l7mxi72k79drxij2zqk3nsj8wi17bl4nfvb1ypc2gi9";
   };
 } // (args.argsOverride or {}))