summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-08-27 01:12:05 +0000
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-08-27 12:24:08 -0400
commit467e3a7a8758b533147912c2b790ec5de93b4500 (patch)
tree0ab633dee373004156c411567f1512946fc2147f /pkgs/os-specific/linux/kernel
parent54197b57b26aae15ec1add88f16ebe51a5e7daf2 (diff)
downloadnixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.tar
nixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.tar.gz
nixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.tar.bz2
nixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.tar.lz
nixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.tar.xz
nixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.tar.zst
nixpkgs-467e3a7a8758b533147912c2b790ec5de93b4500.zip
linux: 4.14.244 -> 4.14.245
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-4.14.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix
index c2c0078dc60..914626124e5 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.14.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix
@@ -3,7 +3,7 @@
 with lib;
 
 buildLinux (args // rec {
-  version = "4.14.244";
+  version = "4.14.245";
 
   # 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/v4.x/linux-${version}.tar.xz";
-    sha256 = "0x554dck5f78ljknwahjvf49952s1w0zja3yh4vfz6lmf6hvzq5n";
+    sha256 = "085jls7b2rzxlmvp0zsp4l3wi5xdrqlv2qczzwvbhzna1f4n2x0d";
   };
 } // (args.argsOverride or {}))