Files
nixpkgs/pkgs/os-specific/linux/microcode/intel.nix
T

34 lines
943 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libarchive, iucode-tool }:
stdenv.mkDerivation rec {
pname = "microcode-intel";
2020-11-19 20:30:53 +01:00
version = "20201118";
2013-09-04 14:07:58 +02:00
src = fetchFromGitHub {
owner = "intel";
repo = "Intel-Linux-Processor-Microcode-Data-Files";
rev = "microcode-${version}";
2020-11-19 20:30:53 +01:00
sha256 = "1xs3f2rbfqnpz9qs7a1kl363qdyb8fybmmyd37v573clqf7l4lgg";
};
2018-08-16 14:11:50 +08:00
nativeBuildInputs = [ iucode-tool libarchive ];
installPhase = ''
2018-08-16 14:11:50 +08:00
runHook preInstall
mkdir -p $out kernel/x86/microcode
2018-08-16 14:11:50 +08:00
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
2018-08-16 14:11:50 +08:00
runHook postInstall
'';
meta = with stdenv.lib; {
homepage = "http://www.intel.com/";
description = "Microcode for Intel processors";
2015-03-25 14:28:32 -07:00
license = licenses.unfreeRedistributableFirmware;
platforms = platforms.linux;
2019-11-27 16:23:16 +01:00
maintainers = with maintainers; [ andir ];
};
2012-08-11 14:10:06 -04:00
}