2017-04-18 07:48:23 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:
|
2011-03-22 06:21:24 -07:00
|
|
|
|
2014-06-10 16:15:58 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2011-03-22 06:21:24 -07:00
|
|
|
name = "efibootmgr-${version}";
|
2018-04-11 00:45:18 -07:00
|
|
|
version = "16";
|
2011-03-22 06:21:24 -07:00
|
|
|
|
2017-04-18 07:48:23 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-16 17:18:40 -08:00
|
|
|
|
2017-04-18 07:48:23 -07:00
|
|
|
buildInputs = [ efivar popt ];
|
2011-03-22 06:21:24 -07:00
|
|
|
|
2015-06-18 22:34:43 -07:00
|
|
|
src = fetchFromGitHub {
|
2018-02-16 17:18:40 -08:00
|
|
|
owner = "rhboot";
|
2015-06-18 22:34:43 -07:00
|
|
|
repo = "efibootmgr";
|
2016-08-21 04:01:26 -07:00
|
|
|
rev = version;
|
2018-04-11 00:45:18 -07:00
|
|
|
sha256 = "0b27h8vf1b6laln5n0wk2hkzyyh87sxanj7wrz9kimyx03dcq6vi";
|
2011-03-22 06:21:24 -07:00
|
|
|
};
|
|
|
|
|
2017-04-18 07:48:23 -07:00
|
|
|
makeFlags = [ "EFIDIR=nixos" ];
|
2015-06-18 22:34:43 -07:00
|
|
|
|
2016-08-21 04:01:26 -07:00
|
|
|
installFlags = [ "prefix=$(out)" ];
|
2011-03-22 06:21:24 -07:00
|
|
|
|
2014-06-10 16:15:58 -07:00
|
|
|
meta = with stdenv.lib; {
|
2011-03-22 06:21:24 -07:00
|
|
|
description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
|
2018-02-16 17:18:40 -08:00
|
|
|
homepage = https://github.com/rhboot/efibootmgr;
|
2014-06-10 16:15:58 -07:00
|
|
|
license = licenses.gpl2;
|
2018-02-16 17:18:40 -08:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-06-10 16:15:58 -07:00
|
|
|
platforms = platforms.linux;
|
2011-03-22 06:21:24 -07:00
|
|
|
};
|
|
|
|
}
|