2018-08-16 08:10:21 +02:00
|
|
|
{ stdenv, fetchFromGitLab, autoreconfHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "iucode-tool";
|
2018-08-16 08:10:21 +02:00
|
|
|
version = "2.3.1";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "iucode-tool";
|
|
|
|
repo = "iucode-tool";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "04dlisw87dd3q3hhmkqc5dd58cp22fzx3rzah7pvcyij135yjc3a";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Intel® 64 and IA-32 processor microcode tool";
|
|
|
|
homepage = https://gitlab.com/iucode-tool/iucode-tool;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
};
|
|
|
|
}
|