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