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

30 lines
759 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:
2014-06-10 16:15:58 -07:00
stdenv.mkDerivation rec {
name = "efibootmgr-${version}";
version = "16";
nativeBuildInputs = [ pkgconfig ];
2018-02-16 17:18:40 -08:00
buildInputs = [ efivar popt ];
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";
rev = version;
sha256 = "0b27h8vf1b6laln5n0wk2hkzyyh87sxanj7wrz9kimyx03dcq6vi";
};
makeFlags = [ "EFIDIR=nixos" ];
2015-06-18 22:34:43 -07:00
installFlags = [ "prefix=$(out)" ];
2014-06-10 16:15:58 -07:00
meta = with stdenv.lib; {
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;
};
}