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

31 lines
784 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:
2014-06-11 03:15:58 +04:00
stdenv.mkDerivation rec {
name = "efibootmgr-${version}";
version = "15";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ efivar popt ];
2015-06-19 08:34:43 +03:00
src = fetchFromGitHub {
owner = "rhinstaller";
repo = "efibootmgr";
rev = version;
sha256 = "0z7h1dirp8za6lbbf4f3dzn7l1px891rdymhkbqc10yj6gi1jpqp";
};
2015-06-19 08:34:43 +03:00
NIX_CFLAGS_COMPILE = "-I${efivar}/include/efivar";
makeFlags = [ "EFIDIR=nixos" ];
2015-06-19 08:34:43 +03:00
installFlags = [ "prefix=$(out)" ];
2014-06-11 03:15:58 +04:00
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;
2014-06-11 03:15:58 +04:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}