summary refs log tree commit diff
path: root/pkgs/os-specific/linux/microcode
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-09-04 14:07:58 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-09-04 14:23:44 +0200
commit8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b (patch)
treeb49ef8507011e5187187abe849ba3db695938bad /pkgs/os-specific/linux/microcode
parentb8bc3aa26d81c9031d6c883a47eddea15b6037d7 (diff)
downloadnixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.tar
nixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.tar.gz
nixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.tar.bz2
nixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.tar.lz
nixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.tar.xz
nixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.tar.zst
nixpkgs-8a56adee74e9312d7152c1c2ab8afc7a2a0c2b2b.zip
microcode-intel: Update to 20130808
Diffstat (limited to 'pkgs/os-specific/linux/microcode')
-rw-r--r--pkgs/os-specific/linux/microcode/intel.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/microcode/intel.nix b/pkgs/os-specific/linux/microcode/intel.nix
index e85ab29078b..fdd8bf63dfc 100644
--- a/pkgs/os-specific/linux/microcode/intel.nix
+++ b/pkgs/os-specific/linux/microcode/intel.nix
@@ -1,12 +1,13 @@
 { stdenv, fetchurl, microcode2ucode }:
 
-let version = "20120606";
-    num = "21385";
-in stdenv.mkDerivation {
+let version = "20130808"; in
+
+stdenv.mkDerivation {
   name = "microcode-intel-${version}";
+
   src = fetchurl {
-    url = "http://downloadmirror.intel.com/${num}/eng/microcode-${version}.tgz";
-    sha256 = "0hs95lj24zx3jscc64zg3hf8xc95vrnsyqlid66h453ib0wf8fg1";
+    url = "http://downloadmirror.intel.com/23082/eng/microcode-${version}.tgz";
+    sha256 = "19v0059v6dxv7ly57wgqy9nkjjnmprgwz4s94khdf213k5vikpfm";
   };
 
   buildInputs = [ microcode2ucode ];
@@ -17,12 +18,13 @@ in stdenv.mkDerivation {
   '';
 
   installPhase = ''
-    ensureDir $out
+    mkdir -p $out
     cp -r intel-ucode "$out/"
   '';
 
   meta = {
     homepage = http://www.intel.com/;
     description = "Microcode for Intel processors";
+    license = stdenv.lib.licenses.unfree;
   };
 }