mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
56 lines
1.2 KiB
Nix
56 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;
|
|
};
|
|
})
|