nixpkgs/pkgs/development/libraries/gnu-efi/default.nix

33 lines
742 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pciutils }: with stdenv.lib;
stdenv.mkDerivation rec {
2015-05-20 07:26:12 +00:00
name = "gnu-efi-${version}";
2017-01-29 16:18:30 +00:00
version = "3.0.5";
src = fetchurl {
2015-05-20 07:26:12 +00:00
url = "mirror://sourceforge/gnu-efi/${name}.tar.bz2";
2017-01-29 16:18:30 +00:00
sha256 = "08hb2gpzcj5p743wcagm0j2m4gh100xv12llpbjc13zi2icwv3xx";
};
2015-05-20 07:26:12 +00:00
buildInputs = [ pciutils ];
hardeningDisable = [ "stackprotector" ];
makeFlags = [
2015-05-20 07:26:12 +00:00
"PREFIX=\${out}"
"CC=gcc"
"AS=as"
"LD=ld"
"AR=ar"
"RANLIB=ranlib"
"OBJCOPY=objcopy"
] ++ stdenv.lib.optional stdenv.isArm "ARCH=arm";
meta = with stdenv.lib; {
description = "GNU EFI development toolchain";
homepage = http://sourceforge.net/projects/gnu-efi/;
license = licenses.bsd3;
platforms = platforms.linux;
};
}