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>2019-11-25 08:43:39 -0500
committerTim Steinbach <tim@nequissimus.com>2019-11-25 09:14:38 -0500
commitd65b1c6e977e7fbe5bdbde0e1277674d781d9317 (patch)
treef301933b12ffcb7287b40d4e3a7a7c447086afed /pkgs/os-specific/linux/kernel/linux-4.14.nix
parentaa7c021440c2815a8902cf4ddef90c607f613943 (diff)
downloadnixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.tar
nixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.tar.gz
nixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.tar.bz2
nixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.tar.lz
nixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.tar.xz
nixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.tar.zst
nixpkgs-d65b1c6e977e7fbe5bdbde0e1277674d781d9317.zip
linux: 4.14.155 -> 4.14.156
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 738a55129b1..34654643c33 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.155";
+  version = "4.14.156";
 
   # 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 = "10g4493ldc398qza304z5yz8qdp93w7a2bs5h5dwk0bbamwikmkp";
+    sha256 = "1h47fxfbq0d5ry7j3jxz45v5c4103qncgm2vydpz6zdx1kmrz27q";
   };
 } // (args.argsOverride or {}))