lol

Microcode for intel processors (put in firmware, and 'modprobe microcode')

svn path=/nixpkgs/trunk/; revision=31957

+28
+28
pkgs/os-specific/linux/microcode/intel.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + let version = "20111110"; 4 + num = "20728"; 5 + in stdenv.mkDerivation { 6 + name = "microcode-intel-${version}"; 7 + src = fetchurl { 8 + url = "http://downloadmirror.intel.com/${num}/eng/microcode-${version}.tgz"; 9 + sha256 = "16f532cdf9cce03e01e714619ad9406a465aa965bbd1288035398db79921cbc1"; 10 + }; 11 + 12 + # setSourceRoot = '' 13 + # sourceRoot=. 14 + # ''; 15 + 16 + sourceRoot = "."; 17 + 18 + dontBuild = true; 19 + installPhase = '' 20 + ensureDir $out 21 + cp microcode.dat "$out/" 22 + ''; 23 + 24 + meta = { 25 + homepage = http://www.intel.com; 26 + description = "Microcode for Intel processors"; 27 + }; 28 + }