summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-4.14.nix
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-05-02 14:30:56 -0400
committerTim Steinbach <tim@nequissimus.com>2020-05-02 14:46:22 -0400
commit163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4 (patch)
treee553f3fee504be522d3a1bf35844483772514432 /pkgs/os-specific/linux/kernel/linux-4.14.nix
parentf4558a9ac3fecd88fe3886b80a6c51903f60a64c (diff)
downloadnixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.tar
nixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.tar.gz
nixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.tar.bz2
nixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.tar.lz
nixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.tar.xz
nixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.tar.zst
nixpkgs-163e5a8d0c9f07fe4b357533fccbdcf26cb97fa4.zip
linux: 4.14.177 -> 4.14.178
Diffstat (limited to 'pkgs/os-specific/linux/kernel/linux-4.14.nix')
-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 6c5d86a0e69..013893c1cdd 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 stdenv.lib;
 
 buildLinux (args // rec {
-  version = "4.14.177";
+  version = "4.14.178";
 
   # 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 = "04hq0i06mg2yc09jj2xk0vhf5q9yigzjzm55a5bvfy2a6j43r9rk";
+    sha256 = "1pcqxmq9ir4f963aiw5bab9w2mp4vfiwaq2bk7nksbl2bs3k6b7x";
   };
 } // (args.argsOverride or {}))