summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-11-15 03:09:58 +0100
committerGitHub <noreply@github.com>2023-11-15 03:09:58 +0100
commit4169ebce9135423876560d0b8b15376a44a7fb05 (patch)
tree374ca31715ae8ea18b1dd0e920f363968bfa2ca5 /pkgs/os-specific
parentf902f33d87897db19b697a0c1d207982b57a1e75 (diff)
parentc847da50e2925940e6d96d535280fc46beb159c2 (diff)
downloadnixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.tar
nixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.tar.gz
nixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.tar.bz2
nixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.tar.lz
nixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.tar.xz
nixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.tar.zst
nixpkgs-4169ebce9135423876560d0b8b15376a44a7fb05.zip
Merge pull request #267551 from mweinelt/microcodeIntel-20231114
microcodeIntel: 20230808 -> 20231114
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/microcode/intel.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/microcode/intel.nix b/pkgs/os-specific/linux/microcode/intel.nix
index c489e746886..de51beb2cc1 100644
--- a/pkgs/os-specific/linux/microcode/intel.nix
+++ b/pkgs/os-specific/linux/microcode/intel.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "microcode-intel";
-  version = "20230808";
+  version = "20231114";
 
   src = fetchFromGitHub {
     owner = "intel";
     repo = "Intel-Linux-Processor-Microcode-Data-Files";
     rev = "microcode-${version}";
-    hash = "sha256-xyb4FUV7vG2YSuN4H6eBaf8c4At70NZiUuepbgg2HNg=";
+    hash = "sha256-cZ7APDjwjarPCzk1HWxqIXdGwNOl6HG0KSCtffmEhx0=";
   };
 
   nativeBuildInputs = [ iucode-tool libarchive ];
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     homepage = "https://www.intel.com/";
+    changelog = "https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/${src.rev}";
     description = "Microcode for Intel processors";
     license = licenses.unfreeRedistributableFirmware;
     platforms = platforms.linux;