2019-03-27 04:24:46 +00:00
|
|
|
{ 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";
|
2019-06-22 20:39:27 +00:00
|
|
|
version = "20190618";
|
2019-03-27 04:24:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intel";
|
|
|
|
repo = "Intel-Linux-Processor-Microcode-Data-Files";
|
|
|
|
rev = "microcode-${version}";
|
2019-06-22 20:39:27 +00:00
|
|
|
sha256 = "0fdhrpxvsq0rm5mzj82gvmfb3lm7mhc9hwvimv7dl1jaidbp6lvs";
|
2012-02-01 22:05:21 +00:00
|
|
|
};
|
|
|
|
|
2018-08-16 06:11:50 +00:00
|
|
|
nativeBuildInputs = [ iucode-tool libarchive ];
|
2013-09-04 12:22:24 +00:00
|
|
|
|
2012-02-01 22:05:21 +00:00
|
|
|
installPhase = ''
|
2018-08-16 06:11:50 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
mkdir -p $out kernel/x86/microcode
|
2018-08-16 06:11:50 +00:00
|
|
|
iucode_tool -w kernel/x86/microcode/GenuineIntel.bin intel-ucode/
|
2015-03-25 18:39:58 +00:00
|
|
|
echo kernel/x86/microcode/GenuineIntel.bin | bsdcpio -o -H newc -R 0:0 > $out/intel-ucode.img
|
2018-08-16 06:11:50 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2012-02-01 22:05:21 +00:00
|
|
|
'';
|
|
|
|
|
2015-03-25 18:39:58 +00:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-19 18:04:47 +00: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;
|
2012-02-01 22:05:21 +00:00
|
|
|
};
|
2012-08-11 18:10:06 +00:00
|
|
|
}
|