summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTredwellGit <tredwell@tutanota.com>2021-06-10 20:53:25 +0000
committerTredwellGit <tredwell@tutanota.com>2021-06-10 20:53:25 +0000
commita6d113ad1b17b731972a0550ee14fa333bac2644 (patch)
treed71c58494d5f65ed3a23449db55998d34421a030 /pkgs
parentb7abce543af256de7c88a255cb722d0b2ec51657 (diff)
downloadnixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.tar
nixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.tar.gz
nixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.tar.bz2
nixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.tar.lz
nixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.tar.xz
nixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.tar.zst
nixpkgs-a6d113ad1b17b731972a0550ee14fa333bac2644.zip
linux: 4.14.235 -> 4.14.236
Diffstat (limited to 'pkgs')
-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 7c986259dff..9f40429f0ad 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.235";
+  version = "4.14.236";
 
   # 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,7 +13,7 @@ buildLinux (args // rec {
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
-    sha256 = "03k793hj294zf7jncs1h8zh5dh6xagkfvnydd9jadxvq2z8vvl8f";
+    sha256 = "0albmgxj3cb1dvjagj54l0ffa7kwi8brh7bqwj6gvzpylsby5sp4";
   };
 
   kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_4_14 ];