Skip to content

Commit

Permalink
Merge pull request #58438 from dtzWill/update/microcode-20190312
Browse files Browse the repository at this point in the history
microcodeIntel: 20180807a -> 2019031 (from intel github)
  • Loading branch information
flokli committed Mar 28, 2019
2 parents 3d92872 + ba31c45 commit a960f9e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pkgs/os-specific/linux/microcode/intel.nix
@@ -1,18 +1,18 @@
{ stdenv, fetchurl, libarchive, iucode-tool }:
{ stdenv, fetchFromGitHub, libarchive, iucode-tool }:

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

src = fetchurl {
url = "https://downloadmirror.intel.com/28087/eng/microcode-${version}.tgz";
sha256 = "0dw1akgzdqk95pwmc8gfdmv7kabw9pn4c67f076bcbn4krliias6";
pname = "microcode-intel";
version = "20190312";

src = fetchFromGitHub {
owner = "intel";
repo = "Intel-Linux-Processor-Microcode-Data-Files";
rev = "microcode-${version}";
sha256 = "0n381dai2mv9indsbbr4nfbmp4y4qhshgflr095fyvq5a8acw94m";
};

nativeBuildInputs = [ iucode-tool libarchive ];

sourceRoot = ".";

installPhase = ''
runHook preInstall
Expand Down

0 comments on commit a960f9e

Please sign in to comment.