summary refs log tree commit diff
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2022-03-04 04:34:50 +0000
committerTredwellGit <tredwell@tutanota.com>2022-03-04 04:34:50 +0000
commitad2c5846d32ea381769d3f8e9558326168554a88 (patch)
tree8c8abbc0311aedeb3b46af639f0acc463a6768c1
parentd9dc2d65476fcb7fd960ff918a19a4d8ae90b29c (diff)
downloadnixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.tar
nixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.tar.gz
nixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.tar.bz2
nixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.tar.lz
nixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.tar.xz
nixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.tar.zst
nixpkgs-ad2c5846d32ea381769d3f8e9558326168554a88.zip
linux: 4.19.231 -> 4.19.232
-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 56af836e8d9..0d3aabde313 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 lib;
 
 buildLinux (args // rec {
-  version = "4.19.231";
+  version = "4.19.232";
 
   # 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 = "0cc1ipar37gvzr1xdbda5hghnvjmy8pk8an8hs2jspmhnfrj6cb7";
+    sha256 = "0b520cwwqr5b1skc3gbq35hfjqpidxcl3gq7x5bdqqqdg0afiksg";
   };
 } // (args.argsOverride or {}))