2018-12-16 01:06:43 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, efivar, popt }:
|
2011-03-22 14:21:24 +01:00
|
|
|
|
2014-06-11 01:15:58 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2011-03-22 14:21:24 +01:00
|
|
|
name = "efibootmgr-${version}";
|
2018-08-09 08:22:01 +02:00
|
|
|
version = "17";
|
2011-03-22 14:21:24 +01:00
|
|
|
|
2017-04-18 16:48:23 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-17 02:18:40 +01:00
|
|
|
|
2017-04-18 16:48:23 +02:00
|
|
|
buildInputs = [ efivar popt ];
|
2011-03-22 14:21:24 +01:00
|
|
|
|
2015-06-19 07:34:43 +02:00
|
|
|
src = fetchFromGitHub {
|
2018-02-17 02:18:40 +01:00
|
|
|
owner = "rhboot";
|
2015-06-19 07:34:43 +02:00
|
|
|
repo = "efibootmgr";
|
2016-08-21 13:01:26 +02:00
|
|
|
rev = version;
|
2018-08-09 08:22:01 +02:00
|
|
|
sha256 = "1niicijxg59rsmiw3rsjwy4bvi1n42dynvm01lnp9haixdzdpq03";
|
2011-03-22 14:21:24 +01:00
|
|
|
};
|
|
|
|
|
2018-12-16 01:06:43 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "remove-extra-decl.patch";
|
|
|
|
url = "https://github.com/rhboot/efibootmgr/commit/99b578501643377e0b1994b2a068b790d189d5ad.patch";
|
|
|
|
sha256 = "1sbijvlpv4khkix3vix9mbhzffj8lp8zpnbxm9gnzjz8yssz9p5h";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-04-18 16:48:23 +02:00
|
|
|
makeFlags = [ "EFIDIR=nixos" ];
|
2015-06-19 07:34:43 +02:00
|
|
|
|
2016-08-21 13:01:26 +02:00
|
|
|
installFlags = [ "prefix=$(out)" ];
|
2011-03-22 14:21:24 +01:00
|
|
|
|
2014-06-11 01:15:58 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-03-22 14:21:24 +01:00
|
|
|
description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
|
2018-02-17 02:18:40 +01:00
|
|
|
homepage = https://github.com/rhboot/efibootmgr;
|
2014-06-11 01:15:58 +02:00
|
|
|
license = licenses.gpl2;
|
2018-02-17 02:18:40 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2014-06-11 01:15:58 +02:00
|
|
|
platforms = platforms.linux;
|
2011-03-22 14:21:24 +01:00
|
|
|
};
|
|
|
|
}
|