nixpkgs/pkgs/tools/system/efibootmgr/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, efivar, popt }:
2014-06-10 23:15:58 +00:00
stdenv.mkDerivation rec {
pname = "efibootmgr";
version = "17";
nativeBuildInputs = [ pkg-config ];
2018-02-17 01:18:40 +00:00
buildInputs = [ efivar popt ];
2015-06-19 05:34:43 +00:00
src = fetchFromGitHub {
2018-02-17 01:18:40 +00:00
owner = "rhboot";
2015-06-19 05:34:43 +00:00
repo = "efibootmgr";
rev = version;
sha256 = "1niicijxg59rsmiw3rsjwy4bvi1n42dynvm01lnp9haixdzdpq03";
};
patches = [
(fetchpatch {
name = "remove-extra-decl.patch";
url = "https://github.com/rhboot/efibootmgr/commit/99b578501643377e0b1994b2a068b790d189d5ad.patch";
sha256 = "1sbijvlpv4khkix3vix9mbhzffj8lp8zpnbxm9gnzjz8yssz9p5h";
})
];
# We have no LTO here since commit 22284b07.
postPatch = if stdenv.isi686 then "sed '/^CFLAGS/s/-flto//' -i Make.defaults" else null;
2020-06-19 17:44:11 +00:00
makeFlags = [ "EFIDIR=nixos" "PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config" ];
2015-06-19 05:34:43 +00:00
installFlags = [ "prefix=$(out)" ];
meta = with lib; {
description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
homepage = "https://github.com/rhboot/efibootmgr";
2014-06-10 23:15:58 +00:00
license = licenses.gpl2;
2018-02-17 01:18:40 +00:00
maintainers = with maintainers; [ ];
2014-06-10 23:15:58 +00:00
platforms = platforms.linux;
};
}