My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/os-specific/linux/microcode/intel.nix

33 lines
881 B

{ stdenv, fetchurl, libarchive, iucode-tool }:
stdenv.mkDerivation rec {
name = "microcode-intel-${version}";
version = "20180807a";
src = fetchurl {
url = "https://downloadmirror.intel.com/28087/eng/microcode-${version}.tgz";
sha256 = "0dw1akgzdqk95pwmc8gfdmv7kabw9pn4c67f076bcbn4krliias6";
};
nativeBuildInputs = [ iucode-tool libarchive ];
sourceRoot = ".";
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;
};
}