about 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>2019-03-27 10:09:43 -0400
committerTim Steinbach <tim@nequissimus.com>2019-03-27 10:09:43 -0400
commitec83ff060e90d67127057bfd656a808e62c056e9 (patch)
tree6456e17d46d3d4de3ca2113696219853792cd5ef /pkgs/os-specific/linux/kernel/linux-4.19.nix
parente3bee73c18eca1bcf76cb3e562d0078955938cec (diff)
downloadnixlib-ec83ff060e90d67127057bfd656a808e62c056e9.tar
nixlib-ec83ff060e90d67127057bfd656a808e62c056e9.tar.gz
nixlib-ec83ff060e90d67127057bfd656a808e62c056e9.tar.bz2
nixlib-ec83ff060e90d67127057bfd656a808e62c056e9.tar.lz
nixlib-ec83ff060e90d67127057bfd656a808e62c056e9.tar.xz
nixlib-ec83ff060e90d67127057bfd656a808e62c056e9.tar.zst
nixlib-ec83ff060e90d67127057bfd656a808e62c056e9.zip
linux: 4.19.31 -> 4.19.32
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 a5cd732727d0..fd4989164a00 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.31";
+  version = "4.19.32";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${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 = "02r822zhs1xcjy6jpf9fv0h4br47drd3xssxapr2b45y8anr1aks";
+    sha256 = "1ng730lz7riiq7ja4k3x17njs9779jy49b15kbfy7bi48cax29m3";
   };
 } // (args.argsOverride or {}))