summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2019-09-19 09:54:31 -0400
committerTim Steinbach <tim@nequissimus.com>2019-09-19 09:54:31 -0400
commit1cb7951beb18257c179741e4fa58ed2cfa366722 (patch)
treead6348a27a3f912cc9cc3c7bdf8d0e100e47ece1
parent93519f46cda70712267a7f0e737604785c75056e (diff)
downloadnixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.tar
nixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.tar.gz
nixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.tar.bz2
nixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.tar.lz
nixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.tar.xz
nixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.tar.zst
nixpkgs-1cb7951beb18257c179741e4fa58ed2cfa366722.zip
linux: 4.19.73 -> 4.19.74
-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 e1c1a260375..5e0e5f882e4 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.73";
+  version = "4.19.74";
 
   # 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 = "1asz4zyfw7iyg68x3h8r5pgbqpk4vpblfzcb295xmn52y9zfgdbx";
+    sha256 = "10pfg5sijw9sx66ybrb06nlmlvj0sxxa1yjhg6qwdhi9sgm2yp29";
   };
 } // (args.argsOverride or {}))