microcodeIntel: 20180807a -> 20190312 (from intel github)
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/blob/microcode-20190312/releasenote#L85
This commit is contained in:
parent
1777055209
commit
ba31c45cbb
|
@ -1,18 +1,18 @@
|
||||||
{ stdenv, fetchurl, libarchive, iucode-tool }:
|
{ stdenv, fetchFromGitHub, libarchive, iucode-tool }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "microcode-intel-${version}";
|
pname = "microcode-intel";
|
||||||
version = "20180807a";
|
version = "20190312";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://downloadmirror.intel.com/28087/eng/microcode-${version}.tgz";
|
owner = "intel";
|
||||||
sha256 = "0dw1akgzdqk95pwmc8gfdmv7kabw9pn4c67f076bcbn4krliias6";
|
repo = "Intel-Linux-Processor-Microcode-Data-Files";
|
||||||
|
rev = "microcode-${version}";
|
||||||
|
sha256 = "0n381dai2mv9indsbbr4nfbmp4y4qhshgflr095fyvq5a8acw94m";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ iucode-tool libarchive ];
|
nativeBuildInputs = [ iucode-tool libarchive ];
|
||||||
|
|
||||||
sourceRoot = ".";
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue