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

33 lines
882 B
Nix
Raw Normal View History

2015-06-19 05:34:43 +00:00
{ stdenv, fetchFromGitHub, perl, efivar, pciutils, zlib }:
2014-06-10 23:15:58 +00:00
stdenv.mkDerivation rec {
name = "efibootmgr-${version}";
2015-06-19 05:34:43 +00:00
version = "0.12";
2014-06-10 23:15:58 +00:00
buildInputs = [ perl efivar pciutils zlib ];
2015-06-19 05:34:43 +00:00
src = fetchFromGitHub {
owner = "rhinstaller";
repo = "efibootmgr";
rev = name;
sha256 = "0fmrsp67dln76896fvxalj2pamyp9dszf32kl06wdfi0km42z8sh";
};
2015-06-19 05:34:43 +00:00
NIX_CFLAGS_COMPILE = "-I${efivar}/include/efivar";
NIX_LDFLAGS = "-lefiboot -lefivar";
postPatch = ''
substituteInPlace "./tools/install.pl" \
--replace "/usr/bin/perl" "${perl}/bin/perl"
'';
2014-06-10 23:15:58 +00:00
installFlags = [ "BINDIR=$(out)/sbin" ];
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;
};
}