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

30 lines
759 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:
2014-06-11 01:15:58 +02:00
stdenv.mkDerivation rec {
name = "efibootmgr-${version}";
version = "15";
nativeBuildInputs = [ pkgconfig ];
2018-02-17 02:18:40 +01:00
buildInputs = [ efivar popt ];
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";
rev = version;
sha256 = "0z7h1dirp8za6lbbf4f3dzn7l1px891rdymhkbqc10yj6gi1jpqp";
};
makeFlags = [ "EFIDIR=nixos" ];
2015-06-19 07:34:43 +02:00
installFlags = [ "prefix=$(out)" ];
2014-06-11 01:15:58 +02:00
meta = with stdenv.lib; {
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;
};
}