about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-11-12 16:02:03 -0500
committerTim Steinbach <tim@nequissimus.com>2019-11-12 16:02:03 -0500
commit3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76 (patch)
treea29758f5b8c412da11f3f69131490e5477cfc33b /pkgs/os-specific
parent6928cb22e943db64c6fef55d950449b8be9906f3 (diff)
downloadnixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.tar
nixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.tar.gz
nixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.tar.bz2
nixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.tar.lz
nixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.tar.xz
nixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.tar.zst
nixlib-3dfff501b52b0ecc49df5d47b9c5c79e4f6a5e76.zip
linux: 5.3.10 -> 5.3.11
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.3.nix b/pkgs/os-specific/linux/kernel/linux-5.3.nix
index 1eac7ad05f2b..c3312c250a53 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.3.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.3.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.3.10";
+  version = "5.3.11";
 
   # 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 = "08ls1nb0yw6apbx219wj4ax8mw57fjcp0496k2sz5sxhiywf0ql1";
+    sha256 = "1dxfh0l4inpjd17pyxfsskjsphs43r8lg6nhhr3y4whxdna5cwbf";
   };
 } // (args.argsOverride or {}))