nixpkgs/pkgs/by-name/iu/iucode-tool/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.2 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitLab,
autoreconfHook,
fetchpatch,
argp-standalone,
}:
2018-08-16 09:10:21 +03:00
stdenv.mkDerivation rec {
pname = "iucode-tool";
2018-08-16 09:10:21 +03:00
version = "2.3.1";
src = fetchFromGitLab {
owner = "iucode-tool";
repo = "iucode-tool";
rev = "v${version}";
2018-08-16 09:10:21 +03:00
sha256 = "04dlisw87dd3q3hhmkqc5dd58cp22fzx3rzah7pvcyij135yjc3a";
};
2023-02-19 02:12:36 +03:00
patches = [
# build fix for musl libc, pending upstream review
# https://gitlab.com/iucode-tool/iucode-tool/-/merge_requests/4
(fetchpatch {
url = "https://gitlab.com/iucode-tool/iucode-tool/-/commit/fda4aaa4727601dbe817fac001f234c19420351a.patch";
hash = "sha256-BxYrXALpZFyJtFrgU5jFmzd1dIMPmpNgvYArgkwGt/w=";
})
];
2018-08-16 09:10:21 +03:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = lib.optional stdenv.hostPlatform.isMusl argp-standalone;
2018-08-16 09:10:21 +03:00
enableParallelBuilding = true;
meta = with lib; {
2018-08-16 09:10:21 +03:00
description = "Intel® 64 and IA-32 processor microcode tool";
mainProgram = "iucode_tool";
homepage = "https://gitlab.com/iucode-tool/iucode-tool";
2024-05-26 15:16:07 +03:00
license = licenses.gpl2Plus;
2018-08-16 09:10:21 +03:00
maintainers = with maintainers; [ peterhoeg ];
platforms = [
"x86_64-linux"
"i686-linux"
];
2018-08-16 09:10:21 +03:00
};
}