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

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

  buildInputs = [ perl efivar pciutils zlib ];

  src = fetchgit {
    url = "git://github.com/vathpela/efibootmgr.git";
    rev = "refs/tags/${name}";
    sha256 = "1nazmqxppx2xa8clv4bjdb1b6gyyimgjdj85n2hmf1smqr8krrmz";
  };

  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;
    maintainers = with maintainers; [ shlevy ];
    platforms = platforms.linux;
  };
}