summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-12-17 23:08:22 +0000
committerTredwellGit <tredwell@tutanota.com>2021-12-17 23:08:22 +0000
commit8955b58c5ee023d49c225e9ae27b0187105316fc (patch)
treee039cb54950aca6632ef40e9e49ab8239828b50d /pkgs/os-specific/linux
parent72b54385a5ece0ccb87357dc189cc025f60d4f9e (diff)
downloadnixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.tar
nixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.tar.gz
nixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.tar.bz2
nixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.tar.lz
nixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.tar.xz
nixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.tar.zst
nixpkgs-8955b58c5ee023d49c225e9ae27b0187105316fc.zip
linux: 5.15.7 -> 5.15.10
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.15.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix
index 603182325bb..38405032e0d 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.15.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.15.7";
+  version = "5.15.10";
 
   # 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/v5.x/linux-${version}.tar.xz";
-    sha256 = "1caxpqmik6gkhk3437pcgfq6vvlbs962hylgbh64iizd76l5142x";
+    sha256 = "0jsv8lialjwp91qg9c9rh8rhn49a70ryyhzl19bxq3fhz1fwyks8";
   };
 } // (args.argsOverride or { }))