mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
66b060e0e7
* efibootmgr: migrate to by-name * efibootmgr: format with nixfmt * efibootmgr: adopt * efibootmgr: modernize
44 lines
936 B
Nix
44 lines
936 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
efivar,
|
|
popt,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "efibootmgr";
|
|
version = "18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rhboot";
|
|
repo = "efibootmgr";
|
|
rev = 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"}" ];
|
|
|
|
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/${src.rev}";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ getchoo ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|