summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-08-03 16:15:24 -0400
committerTim Steinbach <tim@nequissimus.com>2020-08-03 16:35:16 -0400
commitb3f869febbe16ace6b962b5aa4df5658978234ae (patch)
tree02d0e49811786c2875dfe0eaa29b67f945fd00cb
parent60773afea25c33716944e05d18b863b62d6b010f (diff)
downloadnixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.tar
nixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.tar.gz
nixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.tar.bz2
nixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.tar.lz
nixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.tar.xz
nixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.tar.zst
nixpkgs-b3f869febbe16ace6b962b5aa4df5658978234ae.zip
linux: 5.7.11 -> 5.7.12
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.7.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.7.nix b/pkgs/os-specific/linux/kernel/linux-5.7.nix
index 43b05c8925d..919e9a82a3e 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.7.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.7.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.7.11";
+  version = "5.7.12";
 
   # 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 = "1wb0xm9srkrzrrs6zi7ydykyiwn0247r3z9axf79khqkm8r30ack";
+    sha256 = "022yl5zksq3z4f9czk3hbdfmrw1sbnif7h4m8h09k38rsy4wym3s";
   };
 } // (args.argsOverride or {}))