diff --git a/pkgs/tools/system/efibootmgr/default.nix b/pkgs/tools/system/efibootmgr/default.nix index 31be8ab63f4..08cdec72c5b 100644 --- a/pkgs/tools/system/efibootmgr/default.nix +++ b/pkgs/tools/system/efibootmgr/default.nix @@ -5,26 +5,25 @@ stdenv.mkDerivation rec { version = "15"; nativeBuildInputs = [ pkgconfig ]; - + buildInputs = [ efivar popt ]; src = fetchFromGitHub { - owner = "rhinstaller"; + owner = "rhboot"; repo = "efibootmgr"; rev = version; sha256 = "0z7h1dirp8za6lbbf4f3dzn7l1px891rdymhkbqc10yj6gi1jpqp"; }; - NIX_CFLAGS_COMPILE = "-I${efivar}/include/efivar"; - makeFlags = [ "EFIDIR=nixos" ]; installFlags = [ "prefix=$(out)" ]; meta = with stdenv.lib; { description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager"; - homepage = https://github.com/rhinstaller/efibootmgr; + homepage = https://github.com/rhboot/efibootmgr; license = licenses.gpl2; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; }