Skip to content

Commit

Permalink
uicode-tool: init at 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Aug 16, 2018
1 parent 6afd19e commit fda7df6
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/os-specific/linux/microcode/iucode-tool.nix
@@ -0,0 +1,25 @@
{ stdenv, fetchFromGitLab, autoreconfHook }:

stdenv.mkDerivation rec {
name = "iucode-tool-${version}";
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" ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -13474,6 +13474,8 @@ with pkgs;

microcodeIntel = callPackage ../os-specific/linux/microcode/intel.nix { };

iucode-tool = callPackage ../os-specific/linux/microcode/iucode-tool.nix { };

inherit (callPackages ../os-specific/linux/apparmor { python = python3; })
libapparmor apparmor-utils apparmor-bin-utils apparmor-parser apparmor-pam
apparmor-profiles apparmor-kernel-patches;
Expand Down

0 comments on commit fda7df6

Please sign in to comment.