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

28 lines
776 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, perl, efivar, pciutils, zlib, popt }:
2014-06-10 23:15:58 +00:00
stdenv.mkDerivation rec {
name = "efibootmgr-${version}";
version = "13";
buildInputs = [ perl efivar pciutils zlib popt ];
2015-06-19 05:34:43 +00:00
src = fetchFromGitHub {
owner = "rhinstaller";
repo = "efibootmgr";
rev = version;
sha256 = "1kwmvx111c3a5783kx3az76mkhpr1nsdx0yv09gp4k0hgzqlqj96";
};
2015-06-19 05:34:43 +00:00
NIX_CFLAGS_COMPILE = "-I${efivar}/include/efivar";
NIX_LDFLAGS = "-lefiboot -lefivar -lpopt";
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";
homepage = http://linux.dell.com/efibootmgr/;
2014-06-10 23:15:58 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}