35 lines
821 B
Nix
35 lines
821 B
Nix
|
{ 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" ];
|
||
|
};
|
||
|
}
|