summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-01-15 09:12:21 -0500
committerTim Steinbach <tim@nequissimus.com>2020-01-15 09:12:21 -0500
commitfb06094ae36f9efd63453f7e90ff67ef7243f4bf (patch)
tree3cbd54b2b2412a97206b41fc71c6dc34cd71b09d /pkgs/os-specific
parent155d5292ccf9c07a9480d990b99a74a9774750cd (diff)
downloadnixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.tar
nixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.tar.gz
nixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.tar.bz2
nixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.tar.lz
nixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.tar.xz
nixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.tar.zst
nixpkgs-fb06094ae36f9efd63453f7e90ff67ef7243f4bf.zip
linux: 5.4.11 -> 5.4.12
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-5.4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix
index 73fe68261ab..76f7430f104 100644
--- a/pkgs/os-specific/linux/kernel/linux-5.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 buildLinux (args // rec {
-  version = "5.4.11";
+  version = "5.4.12";
 
   # 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/v5.x/linux-${version}.tar.xz";
-    sha256 = "0b6pamnhyzf4n6sl8lxcnllrn41xmbldipfca23j1n71spjkdgb2";
+    sha256 = "1yyh934ifzwgqlpd8wy50z9d68hla5arvy50pi6c499dsnicghyr";
   };
 } // (args.argsOverride or {}))