2022-10-31 14:25:09 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, efivar, popt }:
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2014-06-10 23:15:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "efibootmgr";
|
2022-10-31 14:25:09 +00:00
|
|
|
version = "18";
|
2011-03-22 13:21:24 +00:00
|
|
|
|
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";
|
2016-08-21 11:01:26 +00:00
|
|
|
rev = version;
|
2022-10-31 14:25:09 +00:00
|
|
|
hash = "sha256-DYYQGALEn2+mRHgqCJsA7OQCF7xirIgQlWexZ9uoKcg=";
|
2011-03-22 13:21:24 +00:00
|
|
|
};
|
|
|
|
|
2022-10-31 14:25:09 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [ efivar popt ];
|
2018-12-16 00:06:43 +00:00
|
|
|
|
2022-10-31 14:25:09 +00:00
|
|
|
makeFlags = [
|
|
|
|
"EFIDIR=nixos"
|
|
|
|
"PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config"
|
|
|
|
];
|
2015-06-19 05:34:43 +00:00
|
|
|
|
2016-08-21 11:01:26 +00:00
|
|
|
installFlags = [ "prefix=$(out)" ];
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2021-01-11 07:54:33 +00: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-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/rhboot/efibootmgr";
|
2022-10-31 14:25:09 +00:00
|
|
|
license = licenses.gpl2Only;
|
2018-02-17 01:18:40 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-06-10 23:15:58 +00:00
|
|
|
platforms = platforms.linux;
|
2011-03-22 13:21:24 +00:00
|
|
|
};
|
|
|
|
}
|