efibootmgr: 17 -> 18

This commit is contained in:
Anthony Roussel 2022-10-31 15:25:09 +01:00
parent f9969a941e
commit 49d994ef5b
No known key found for this signature in database
GPG key ID: 9DC4987B1A55E75E

View file

@ -1,36 +1,31 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, efivar, popt }: { lib, stdenv, fetchFromGitHub, pkg-config, efivar, popt }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "efibootmgr"; pname = "efibootmgr";
version = "17"; version = "18";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ efivar popt ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rhboot"; owner = "rhboot";
repo = "efibootmgr"; repo = "efibootmgr";
rev = version; rev = version;
sha256 = "1niicijxg59rsmiw3rsjwy4bvi1n42dynvm01lnp9haixdzdpq03"; hash = "sha256-DYYQGALEn2+mRHgqCJsA7OQCF7xirIgQlWexZ9uoKcg=";
}; };
patches = [ nativeBuildInputs = [ pkg-config ];
(fetchpatch {
name = "remove-extra-decl.patch";
url = "https://github.com/rhboot/efibootmgr/commit/99b578501643377e0b1994b2a068b790d189d5ad.patch";
sha256 = "1sbijvlpv4khkix3vix9mbhzffj8lp8zpnbxm9gnzjz8yssz9p5h";
})
];
makeFlags = [ "EFIDIR=nixos" "PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config" ]; buildInputs = [ efivar popt ];
makeFlags = [
"EFIDIR=nixos"
"PKG_CONFIG=${stdenv.cc.targetPrefix}pkg-config"
];
installFlags = [ "prefix=$(out)" ]; installFlags = [ "prefix=$(out)" ];
meta = with lib; { meta = with lib; {
description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager"; description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
homepage = "https://github.com/rhboot/efibootmgr"; homepage = "https://github.com/rhboot/efibootmgr";
license = licenses.gpl2; license = licenses.gpl2Only;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
platforms = platforms.linux; platforms = platforms.linux;
}; };