summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.19.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-07-21 20:33:45 -0400
committerTim Steinbach <tim@nequissimus.com>2019-07-21 20:54:55 -0400
commit7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87 (patch)
treedaacb6534f264c4a26d959e97f126468dfd5088e /pkgs/os-specific/linux/kernel/linux-4.19.nix
parent77418835549e3c15046e937a0b603263bf4780b6 (diff)
downloadnixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.tar
nixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.tar.gz
nixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.tar.bz2
nixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.tar.lz
nixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.tar.xz
nixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.tar.zst
nixpkgs-7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87.zip
linux: 4.19.59 -> 4.19.60
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.19.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.19.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix
index b244f48f24c..6891b6ce2c2 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.19.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.19.59";
+  version = "4.19.60";
 
   # 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/v4.x/linux-${version}.tar.xz";
-    sha256 = "0nxkr196q0b1hs3a3zavpsjp0jgbqmcwdf0y0f3hbpirshjiid5q";
+    sha256 = "0ibayrvrnw2lw7si78vdqnr20mm1d3z0g6a0ykndvgn5vdax5x9a";
   };
 } // (args.argsOverride or {}))