summary refs log tree commit diff
path: root/pkgs/tools/system/efibootmgr/default.nix
blob: 31be8ab63f41d432df4a2874b51410aab02690d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:

stdenv.mkDerivation rec {
  name = "efibootmgr-${version}";
  version = "15";

  nativeBuildInputs = [ pkgconfig ];
  
  buildInputs = [ efivar popt ];

  src = fetchFromGitHub {
    owner = "rhinstaller";
    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;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}