summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-12-09 06:29:15 +0000
committerTredwellGit <tredwell@tutanota.com>2021-12-09 06:29:15 +0000
commit935be58f5c80c02c48256406dc8df04e75fb52be (patch)
tree5686350173d7c640d626cb7bdd11e15dbe22e416 /pkgs/os-specific
parent2e7590e84fd630f1b55505322d68c46cd4e2120e (diff)
downloadnixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.tar
nixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.tar.gz
nixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.tar.bz2
nixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.tar.lz
nixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.tar.xz
nixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.tar.zst
nixpkgs-935be58f5c80c02c48256406dc8df04e75fb52be.zip
linux: 5.15.6 -> 5.15.7
Diffstat (limited to 'pkgs/os-specific')
-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 5a6d55b94b6..603182325bb 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.6";
+  version = "5.15.7";
 
   # 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 = "1w0plw9rzk2c0g8yxzwj7c6wkq538sy56mx1skmf58wrl83bmsdk";
+    sha256 = "1caxpqmik6gkhk3437pcgfq6vvlbs962hylgbh64iizd76l5142x";
   };
 } // (args.argsOverride or { }))