about summary refs log tree commit diff
path: root/pkgs/tools/system/efibootmgr/default.nix
blob: 39fe1bdf09a30575bbccfe8b0fa3075ddcc178be (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
31
32
{ stdenv, fetchFromGitHub, perl, efivar, pciutils, zlib }:

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

  buildInputs = [ perl efivar pciutils zlib ];

  src = fetchFromGitHub {
    owner = "rhinstaller";
    repo = "efibootmgr";
    rev = name;
    sha256 = "0fmrsp67dln76896fvxalj2pamyp9dszf32kl06wdfi0km42z8sh";
  };

  NIX_CFLAGS_COMPILE = "-I${efivar}/include/efivar";
  NIX_LDFLAGS = "-lefiboot -lefivar";

  postPatch = ''
    substituteInPlace "./tools/install.pl" \
      --replace "/usr/bin/perl" "${perl}/bin/perl"
  '';

  installFlags = [ "BINDIR=$(out)/sbin" ];

  meta = with stdenv.lib; {
    description = "A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager";
    homepage = http://linux.dell.com/efibootmgr/;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}