Move the AMD microcode to the microcode directory

This commit is contained in:
Eelco Dolstra
2013-08-14 03:26:04 +02:00
parent 5c208844e9
commit b3642c3673
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "amd-ucode-2012-09-10";
src = fetchurl {
url = "http://www.amd64.org/pub/microcode/${name}.tar";
sha256 = "065phvhx5hx5ssdd1x2p5m1yv26ak7l5aaw6yk6h95x9mxn5r111";
};
installPhase = ''
mkdir -p $out/amd-ucode
mv microcode_amd_fam15h.bin microcode_amd.bin $out/amd-ucode/
'';
meta = {
description = "AMD Processor Microcode Patch";
homepage = "http://www.amd64.org/support/microcode.html";
license = "non-free";
};
}