2018-08-16 08:11:50 +02:00
|
|
|
{ stdenv, fetchurl, libarchive, iucode-tool }:
|
2012-02-01 23:05:21 +01:00
|
|
|
|
2015-03-25 19:39:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-02-01 23:05:21 +01:00
|
|
|
name = "microcode-intel-${version}";
|
2018-08-29 04:31:46 +02:00
|
|
|
version = "20180807a";
|
2013-09-04 14:07:58 +02:00
|
|
|
|
2012-02-01 23:05:21 +01:00
|
|
|
src = fetchurl {
|
2018-08-29 04:31:46 +02:00
|
|
|
url = "https://downloadmirror.intel.com/28087/eng/microcode-${version}.tgz";
|
|
|
|
sha256 = "0dw1akgzdqk95pwmc8gfdmv7kabw9pn4c67f076bcbn4krliias6";
|
2012-02-01 23:05:21 +01:00
|
|
|
};
|
|
|
|
|
2018-08-16 08:11:50 +02:00
|
|
|
nativeBuildInputs = [ iucode-tool libarchive ];
|
2013-09-04 14:22:24 +02:00
|
|
|
|
2012-02-01 23:05:21 +01:00
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-08-16 08:11:50 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2015-03-25 19:39:58 +01:00
|
|
|
mkdir -p $out kernel/x86/microcode
|
2018-08-16 08:11:50 +02:00
|
|
|
iucode_tool -w kernel/x86/microcode/GenuineIntel.bin intel-ucode/
|
2015-03-25 19:39:58 +01:00
|
|
|
echo kernel/x86/microcode/GenuineIntel.bin | bsdcpio -o -H newc -R 0:0 > $out/intel-ucode.img
|
2018-08-16 08:11:50 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2012-02-01 23:05:21 +01:00
|
|
|
'';
|
|
|
|
|
2015-03-25 19:39:58 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-03-19 19:04:47 +01:00
|
|
|
homepage = http://www.intel.com/;
|
2012-02-01 23:05:21 +01:00
|
|
|
description = "Microcode for Intel processors";
|
2015-03-25 22:28:32 +01:00
|
|
|
license = licenses.unfreeRedistributableFirmware;
|
2015-03-25 19:39:58 +01:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.linux;
|
2012-02-01 23:05:21 +01:00
|
|
|
};
|
2012-08-11 20:10:06 +02:00
|
|
|
}
|