mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
911fe47772
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20191112
33 lines
894 B
Nix
33 lines
894 B
Nix
{ stdenv, fetchFromGitHub, libarchive, iucode-tool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "microcode-intel";
|
|
version = "20191112";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "Intel-Linux-Processor-Microcode-Data-Files";
|
|
rev = "microcode-${version}";
|
|
sha256 = "059hkl172kk5gcsv87z02vh3vdayk63qa6m6yrsipi1203dmyvzw";
|
|
};
|
|
|
|
nativeBuildInputs = [ iucode-tool libarchive ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out kernel/x86/microcode
|
|
iucode_tool -w kernel/x86/microcode/GenuineIntel.bin intel-ucode/
|
|
echo kernel/x86/microcode/GenuineIntel.bin | bsdcpio -o -H newc -R 0:0 > $out/intel-ucode.img
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.intel.com/;
|
|
description = "Microcode for Intel processors";
|
|
license = licenses.unfreeRedistributableFirmware;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|