about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-07-22 08:45:59 -0400
committerAlyssa Ross <hi@alyssa.is>2020-09-29 11:49:53 +0000
commit07444743b31ea82bea42be7cca74be13d8788693 (patch)
tree8cc5c41fb2ce05890e1e70b9c5662666b14ba064
parentaa3c5ebb1d69cff0112eb2337e2332dc168ff445 (diff)
downloadnixlib-07444743b31ea82bea42be7cca74be13d8788693.tar
nixlib-07444743b31ea82bea42be7cca74be13d8788693.tar.gz
nixlib-07444743b31ea82bea42be7cca74be13d8788693.tar.bz2
nixlib-07444743b31ea82bea42be7cca74be13d8788693.tar.lz
nixlib-07444743b31ea82bea42be7cca74be13d8788693.tar.xz
nixlib-07444743b31ea82bea42be7cca74be13d8788693.tar.zst
nixlib-07444743b31ea82bea42be7cca74be13d8788693.zip
linux: 5.7.9 -> 5.7.10
(cherry picked from commit fc9ad83f84141d059574872eaf597feafa41b431)
-rw-r--r--nixpkgs/pkgs/os-specific/linux/kernel/linux-5.7.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.7.nix b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.7.nix
index eb77023e6755..c32f4a2352f9 100644
--- a/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.7.nix
+++ b/nixpkgs/pkgs/os-specific/linux/kernel/linux-5.7.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.7.9";
+  version = "5.7.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 = "qH0wZqeEnNa6mgBDEanuBALSnRfxL2StfZQkRwcLQ/g=";
+    sha256 = "0i1x347q1rs9r11f7qic62d5465dzngxs0n44ryknmxpcl6469a7";
   };
 } // (args.argsOverride or {}))