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

28 lines
642 B

{ stdenv, fetchurl, microcode2ucode }:
let version = "20111110";
num = "20728";
in stdenv.mkDerivation {
name = "microcode-intel-${version}";
src = fetchurl {
url = "http://downloadmirror.intel.com/${num}/eng/microcode-${version}.tgz";
sha256 = "16f532cdf9cce03e01e714619ad9406a465aa965bbd1288035398db79921cbc1";
};
buildInputs = [ microcode2ucode ];
sourceRoot = ".";
buildPhase = ''
intel-microcode2ucode microcode.dat
'';
installPhase = ''
ensureDir $out
cp -r intel-ucode "$out/"
'';
meta = {
homepage = http://www.intel.com/;
description = "Microcode for Intel processors";
};
}