nixpkgs/pkgs/by-name/ef/efibootmgr/package.nix
2024-07-19 22:07:20 -04:00

57 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
efivar,
nix-update-script,
pkg-config,
popt,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "efibootmgr";
version = "18";
outputs = [
"out"
"man"
];
src = fetchFromGitHub {
owner = "rhboot";
repo = "efibootmgr";
rev = finalAttrs.version;
hash = "sha256-DYYQGALEn2+mRHgqCJsA7OQCF7xirIgQlWexZ9uoKcg=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
efivar
popt
];
makeFlags = [
"EFIDIR=nixos"
"PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config"
];
installFlags = [ "prefix=${placeholder "out"}" ];
passthru = {
tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
updateScript = nix-update-script { };
};
meta = {
description = "Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
homepage = "https://github.com/rhboot/efibootmgr";
changelog = "https://github.com/rhboot/efibootmgr/releases/tag/${finalAttrs.version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "efibootmgr";
platforms = lib.platforms.linux;
};
})