summary refs log tree commit diff
path: root/pkgs/os-specific/linux/microcode/intel.nix
blob: 403824fb3a45aed82f02f9d970ea187356d9b569 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, libarchive, iucode-tool }:

stdenv.mkDerivation rec {
  name = "microcode-intel-${version}";
  version = "20180807";

  src = fetchurl {
    url = "https://downloadmirror.intel.com/28039/eng/microcode-${version}.tgz";
    sha256 = "0h4ygwx5brnrjz8v47aikrwhf0q3jhizxmzcii4bdjg64zffiy99";
  };

  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;
    maintainers = with maintainers; [ wkennington ];
    platforms = platforms.linux;
  };
}