Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
758 B
Nix
31 lines
758 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
nix-update-script,
|
|
stdenv,
|
|
cmake,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "metee";
|
|
version = "6.0.2";
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "metee";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-eQpw0VdO+JGtgW4FGduoxY0Gji4hFPSONcEzDRcgWGU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ xddxdd ];
|
|
description = "C library to access CSE/CSME/GSC firmware via a MEI interface";
|
|
homepage = "https://github.com/intel/metee";
|
|
license = lib.licenses.asl20;
|
|
changelog = "https://github.com/intel/metee/releases/tag/${finalAttrs.version}";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|