summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-12-09 06:28:43 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2021-12-12 19:24:54 +0000
commit5bc7fa5ba3a6e8d879f81b1083bdec120723c451 (patch)
treec16fa5555f238621d2aa10bb07b149e424289c21
parentMerge pull request #149489 from NixOS/backport-147446-to-release-21.11 (diff)
downloadnixpkgs-5bc7fa5ba3a6e8d879f81b1083bdec120723c451.tar.gz
linux: 4.14.256 -> 4.14.257
(cherry picked from commit 9cc83854e04fb67ac832a8c0f81b7973cc2f5515)
-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 7fbd38d43602..1fd9c6f6bbb7 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.256";
+ version = "4.14.257";
# 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 = "180s2zmkfxk7af9nnkmfi2cs56af6vwyd21hjcfdxiygjm7j114p";
+ sha256 = "0jnw02jphvm9zcviwwymxyhq8kd0bk0v1827ninnv6bdy3140izv";
};
} // (args.argsOverride or {}))