summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2021-02-10 09:54:21 -0500
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-02-11 09:13:16 -0500
commit04dfe4121d1d935bcc30713bdd3b8fac2308a180 (patch)
tree1be788ea0aa1398f0871ae021f3214fed2178f9c /pkgs/os-specific/linux
parentbf589a89fb1bd6a4ef9832f226bc46f14931013e (diff)
downloadnixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.tar
nixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.tar.gz
nixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.tar.bz2
nixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.tar.lz
nixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.tar.xz
nixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.tar.zst
nixpkgs-04dfe4121d1d935bcc30713bdd3b8fac2308a180.zip
linux: 5.10.14 -> 5.10.15
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.10.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix
index cceb8eeafa6..0d37a8b435b 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.10.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "5.10.14";
+  version = "5.10.15";
 
   # 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 = "0ahxga1jdgn8kxln0pn8j42qxx0dhrhm9vcpwilyjnwb36gvf9zs";
+    sha256 = "00bf1v8zn4qngxhj6sca0lhv71xlnajw02iq6854s76my6y8flnq";
   };
 } // (args.argsOverride or {}))