summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-05-31 10:49:34 -0400
committerTim Steinbach <tim@nequissimus.com>2019-05-31 11:00:28 -0400
commit92c881b6db40dc97551618f35b6d3eae150eafad (patch)
tree85960f8b8d192e58eda11170ab58ced2ae0c94e1
parentfdaf78816149b8aace16431e6650343e7a5780b6 (diff)
downloadnixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.tar
nixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.tar.gz
nixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.tar.bz2
nixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.tar.lz
nixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.tar.xz
nixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.tar.zst
nixpkgs-92c881b6db40dc97551618f35b6d3eae150eafad.zip
linux: 5.1.5 -> 5.1.6
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.1.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.1.nix b/pkgs/os-specific/linux/kernel/linux-5.1.nix
index 496d119a2be..bd14d37be61 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.1.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.1.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.1.5";
+  version = "5.1.6";
 
   # modDirVersion needs to be x.y.z, will automatically add .0 if needed
   modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${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 = "1nvdrzrqqx5whj8sfqrxn1xmxx64595j0iz2wkzgpglprbsr17yp";
+    sha256 = "0y7lkky6hnv6cfq1s60gpny9a40dv85iv1icb37833c0n03a4s4x";
   };
 } // (args.argsOverride or {}))