about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-09-14 08:25:19 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:51:29 +0000
commite53877d860d84c6a125254ca57eeeab73f614fe2 (patch)
tree068c0d5b2b3064a47fcd65ec35c65a13549ce621 /nixpkgs/pkgs/os-specific/linux/kernel
parent9c27ceec8d72d97aa359ec8a38606657b204f7dc (diff)
downloadnixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.tar
nixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.tar.gz
nixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.tar.bz2
nixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.tar.lz
nixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.tar.xz
nixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.tar.zst
nixlib-e53877d860d84c6a125254ca57eeeab73f614fe2.zip
linux: 4.19.144 -> 4.19.145
(cherry picked from commit 0b5ca2c00fba9759dfa6e74c6b8ae965e531fb90)
Diffstat (limited to 'nixpkgs/pkgs/os-specific/linux/kernel')
-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 5270372418b7..c57e8a21e0a5 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.144";
+  version = "4.19.145";
 
   # 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 = "0jnj65bdy5y9lcj5zhrn4iaszpww8z41ac66j00l75sd931l1g9k";
+    sha256 = "1dzn7x5lz808r1sxxdrylh8k3c5n8ffqnz6anx2ywnpiz17q7g0p";
   };
 } // (args.argsOverride or {}))