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

30 lines
759 B
Nix
Raw Normal View History

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