summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-03-12 05:36:52 -0400
committerTim Steinbach <tim@nequissimus.com>2020-03-12 05:57:20 -0400
commit24898ff826af71e963d37a1b2301dfa656955e8c (patch)
tree6a2eedf1ff84a6ceac1f88c7e0395c6c9082c29f /pkgs/os-specific/linux/kernel
parentff6e097af120409df95bc697cd931bde1f961082 (diff)
downloadnixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.tar
nixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.tar.gz
nixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.tar.bz2
nixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.tar.lz
nixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.tar.xz
nixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.tar.zst
nixpkgs-24898ff826af71e963d37a1b2301dfa656955e8c.zip
linux: 4.19.108 -> 4.19.109
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-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 8bbda7aa10b..ae5da9fe92f 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.108";
+  version = "4.19.109";
 
   # 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 = "18shyy1z2s8r26qb4rcz7gwl43dnmycjjywp9gss5zlfn2jyrbh9";
+    sha256 = "0kwnlv5336vqdf38dzn077ic17zkb4rl5khxmc47syzd9zm4fhnh";
   };
 } // (args.argsOverride or {}))