summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-07-08 23:08:10 +0000
committerTredwellGit <tredwell@tutanota.com>2021-07-08 23:08:10 +0000
commitea4cb239528062ac52fc1d4aa2bbf115df9105dc (patch)
tree98b5e8499d6b5fc0d9a96d11842e01a87803427b /pkgs/os-specific/linux/kernel
parente0f9f09c1740d0d80ead4002016bd3df0fc1b197 (diff)
downloadnixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.tar
nixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.tar.gz
nixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.tar.bz2
nixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.tar.lz
nixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.tar.xz
nixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.tar.zst
nixpkgs-ea4cb239528062ac52fc1d4aa2bbf115df9105dc.zip
linux: 5.13 -> 5.13.1
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.13.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.13.nix b/pkgs/os-specific/linux/kernel/linux-5.13.nix
index eb01fb6289c..c13b37a74aa 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.13.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.13.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.13";
+  version = "5.13.1";
 
   # 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,7 +13,7 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
-    sha256 = "sha256-P2uql/N1GEOfUd8uTz1lqCLKX/AWqo5g0sxTuVpsidk=";
+    sha256 = "140a9ngzlarin84mnnwgx6z3ckw431d578aixxl60ll5853gdakj";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];