about 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-09-21 20:14:02 -0400
committerTim Steinbach <tim@nequissimus.com>2019-09-21 20:14:02 -0400
commit39907115e598e61cbcd02040f2456ce5f58d0c68 (patch)
treea577434593fa86c9fb6e2cfba1c85deb9dc8f941 /pkgs/os-specific/linux/kernel/linux-4.19.nix
parent4c1fa37cd31723a6458efe357bb3857d988b9ab0 (diff)
downloadnixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.tar
nixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.tar.gz
nixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.tar.bz2
nixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.tar.lz
nixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.tar.xz
nixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.tar.zst
nixlib-39907115e598e61cbcd02040f2456ce5f58d0c68.zip
linux: 4.19.74 -> 4.19.75
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 5e0e5f882e48..a3d2235e9de1 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.74";
+  version = "4.19.75";
 
   # 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 = "10pfg5sijw9sx66ybrb06nlmlvj0sxxa1yjhg6qwdhi9sgm2yp29";
+    sha256 = "0y0vcmxyfg98mm63vaqq6n2bmxkbmrnvigm5zdh1al74w53p2pnx";
   };
 } // (args.argsOverride or {}))