2017-04-18 14:48:23 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2014-06-10 23:15:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2011-03-22 13:21:24 +00:00
|
|
|
name = "efibootmgr-${version}";
|
2018-04-11 07:45:18 +00:00
|
|
|
version = "16";
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2017-04-18 14:48:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-17 01:18:40 +00:00
|
|
|
|
2017-04-18 14:48:23 +00:00
|
|
|
buildInputs = [ efivar popt ];
|
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;
|
2018-04-11 07:45:18 +00:00
|
|
|
sha256 = "0b27h8vf1b6laln5n0wk2hkzyyh87sxanj7wrz9kimyx03dcq6vi";
|
2011-03-22 13:21:24 +00:00
|
|
|
};
|
|
|
|
|
2017-04-18 14:48:23 +00:00
|
|
|
makeFlags = [ "EFIDIR=nixos" ];
|
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
|
|
|
|
2014-06-10 23:15:58 +00:00
|
|
|
meta = with stdenv.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";
|
2018-02-17 01:18:40 +00:00
|
|
|
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;
|
2011-03-22 13:21:24 +00:00
|
|
|
};
|
|
|
|
}
|