about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-09-23 08:46:55 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:51:44 +0000
commite39d774590abb60d014401c01f3d32df43f4c182 (patch)
tree6bfe6009ef766bd9a76fd646edeaadc803c89c3d /nixpkgs
parentbd6528d69f8a89f57f9a70a3503eafc641484ec7 (diff)
downloadnixlib-e39d774590abb60d014401c01f3d32df43f4c182.tar
nixlib-e39d774590abb60d014401c01f3d32df43f4c182.tar.gz
nixlib-e39d774590abb60d014401c01f3d32df43f4c182.tar.bz2
nixlib-e39d774590abb60d014401c01f3d32df43f4c182.tar.lz
nixlib-e39d774590abb60d014401c01f3d32df43f4c182.tar.xz
nixlib-e39d774590abb60d014401c01f3d32df43f4c182.tar.zst
nixlib-e39d774590abb60d014401c01f3d32df43f4c182.zip
linux: 4.19.146 -> 4.19.147
(cherry picked from commit ee975b03f67060f00825fc329d582f7cb4630d46)
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix b/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
index d50535e5d328..aebded8cb739 100644
--- a/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/nixpkgs/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.19.146";
+  version = "4.19.147";
 
   # 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 = "0jl17yk3fpz0sx203l9l1fj5bly3jgsyr8hy5qa6py99fbk0qnim";
+    sha256 = "19nnx61v7c0102ik1rjan0kdsj8av8v7iqz5vm3v3kjllmjmvr2x";
   };
 } // (args.argsOverride or {}))