2014-06-11 00:15:58 +01:00
|
|
|
{ stdenv, fetchgit, perl, efivar, pciutils, zlib }:
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2014-06-11 00:15:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-03-22 13:21:24 +00:00
|
|
|
name = "efibootmgr-${version}";
|
2015-05-11 15:25:17 +01:00
|
|
|
version = "0.11.0";
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2014-06-11 00:15:58 +01:00
|
|
|
buildInputs = [ perl efivar pciutils zlib ];
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2014-06-11 00:15:58 +01:00
|
|
|
src = fetchgit {
|
2015-05-11 15:25:17 +01:00
|
|
|
url = "git://github.com/rhinstaller/efibootmgr.git";
|
2014-06-11 00:15:58 +01:00
|
|
|
rev = "refs/tags/${name}";
|
2015-05-11 15:25:17 +01:00
|
|
|
sha256 = "1di7cipi6jh4qaiq1ckyk6aimgpagb85yr37k3c1kj1m9p5qra4j";
|
2011-03-22 13:21:24 +00:00
|
|
|
};
|
|
|
|
|
2012-03-13 21:32:09 +00:00
|
|
|
postPatch = ''
|
2011-03-22 13:21:24 +00:00
|
|
|
substituteInPlace "./tools/install.pl" \
|
|
|
|
--replace "/usr/bin/perl" "${perl}/bin/perl"
|
|
|
|
'';
|
|
|
|
|
2014-06-11 00:15:58 +01:00
|
|
|
installFlags = [ "BINDIR=$(out)/sbin" ];
|
2011-03-22 13:21:24 +00:00
|
|
|
|
2014-06-11 00:15:58 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-03-22 13:21:24 +00:00
|
|
|
description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
|
|
|
|
homepage = http://linux.dell.com/efibootmgr/;
|
2014-06-11 00:15:58 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ shlevy ];
|
|
|
|
platforms = platforms.linux;
|
2011-03-22 13:21:24 +00:00
|
|
|
};
|
|
|
|
}
|