nixpkgs/pkgs/tools/misc/gummiboot/default.nix

32 lines
974 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gnu-efi, unzip, pkgconfig, utillinux, libxslt, docbook_xsl, docbook_xml_dtd_42 }:
2013-02-01 17:42:19 -05:00
stdenv.mkDerivation rec {
2014-06-30 03:05:40 -04:00
name = "gummiboot-45";
2013-02-01 17:42:19 -05:00
buildInputs = [ gnu-efi pkgconfig libxslt utillinux ];
# Sigh, gummiboot should be able to find this in buildInputs
configureFlags = [
"--with-efi-includedir=${gnu-efi}/include"
"--with-efi-libdir=${gnu-efi}/lib"
"--with-efi-ldsdir=${gnu-efi}/lib"
];
2013-02-01 17:42:19 -05:00
src = fetchurl {
2014-06-30 03:05:40 -04:00
url = http://pkgs.fedoraproject.org/repo/pkgs/gummiboot/gummiboot-45.tar.xz/5d4957390e959cb9f325b87712ddd3f1/gummiboot-45.tar.xz;
sha256 = "15227d6abi90vg7rs234fm13af511nsd6dv87c3jvsjhgb9ib0hm";
2013-02-01 17:42:19 -05:00
};
meta = {
description = "A simple UEFI boot manager which executes configured EFI images";
homepage = http://freedesktop.org/wiki/Software/gummiboot;
license = stdenv.lib.licenses.lgpl21Plus;
2013-02-02 11:02:44 -05:00
platforms = [ "x86_64-linux" "i686-linux" ];
2013-02-01 17:50:41 -05:00
maintainers = [ stdenv.lib.maintainers.shlevy ];
2013-02-01 17:42:19 -05:00
};
}