2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libarchive, iucode-tool }:
|
2012-02-01 22:05:21 +00:00
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-27 04:24:46 +00:00
|
|
|
pname = "microcode-intel";
|
2023-02-15 00:25:55 +00:00
|
|
|
version = "20230214";
|
2019-03-27 04:24:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intel";
|
|
|
|
repo = "Intel-Linux-Processor-Microcode-Data-Files";
|
|
|
|
rev = "microcode-${version}";
|
2023-02-15 00:25:55 +00:00
|
|
|
hash = "sha256-SwdE1c7OEg5nncs5QqaTKCL77KddeHw7ZilctQ4L9RA=";
|
2012-02-01 22:05:21 +00:00
|
|
|
};
|
|
|
|
|
2018-08-16 07:11:50 +01:00
|
|
|
nativeBuildInputs = [ iucode-tool libarchive ];
|
2013-09-04 13:22:24 +01:00
|
|
|
|
2012-02-01 22:05:21 +00:00
|
|
|
installPhase = ''
|
2018-08-16 07:11:50 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
mkdir -p $out kernel/x86/microcode
|
2018-08-16 07:11:50 +01:00
|
|
|
iucode_tool -w kernel/x86/microcode/GenuineIntel.bin intel-ucode/
|
2022-03-26 23:56:55 +00:00
|
|
|
touch -d @$SOURCE_DATE_EPOCH kernel/x86/microcode/GenuineIntel.bin
|
|
|
|
echo kernel/x86/microcode/GenuineIntel.bin | bsdtar --uid 0 --gid 0 -cnf - -T - | bsdtar --null -cf - --format=newc @- > $out/intel-ucode.img
|
2018-08-16 07:11:50 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2012-02-01 22:05:21 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.intel.com/";
|
2012-02-01 22:05:21 +00:00
|
|
|
description = "Microcode for Intel processors";
|
2015-03-25 21:28:32 +00:00
|
|
|
license = licenses.unfreeRedistributableFirmware;
|
2015-03-25 18:39:58 +00:00
|
|
|
platforms = platforms.linux;
|
2022-01-19 23:24:52 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2012-02-01 22:05:21 +00:00
|
|
|
};
|
2012-08-11 19:10:06 +01:00
|
|
|
}
|