nixpkgs/pkgs/tools/misc/refind/default.nix
Shea Levy 742894471d Add rEFInd
svn path=/nixpkgs/trunk/; revision=33474
2012-03-29 14:54:17 +00:00

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" ];
};
}