summary refs log tree commit diff
path: root/pkgs/tools/misc/refind/default.nix
blob: bd0a7040adff7d6a226842e4ebf01960217a5a63 (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
33
34
{ stdenv, fetchurl, gnu_efi, unzip }:

let version = "0.2.3"; in

stdenv.mkDerivation {
  name = "refind-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/refind/refind-src-${version}.zip";
    sha256 = "0q3p4mczr6wchk4vbgsb0cq7829vk3b3kg9qaizrb02pdak3s2nf";
  };

  buildInputs = [ unzip ];

  buildFlags = [ "prefix=" "EFIINC=${gnu_efi}/include/efi" "GNUEFILIB=${gnu_efi}/lib" "EFILIB=${gnu_efi}/lib" "EFICRT0=${gnu_efi}/lib" ];

  installPhase = ''
    mkdir -pv $out
    install -v -m644 refind/refind.efi refind.conf-sample $out
    mv -v icons $out
  '';

  meta = {
    description = "An EFI boot manager";

    homepage = http://www.rodsbooks.com/refind/;

    license = "GPLv3+";

    maintainers = with stdenv.lib.maintainers; [ shlevy ];

    platforms = [ "i686-linux" "x86_64-linux" ];
  };
}