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

33 lines
671 B
Nix
Raw Normal View History

2015-05-20 00:26:12 -07:00
{ stdenv, fetchurl, pciutils }:
stdenv.mkDerivation rec {
2015-05-20 00:26:12 -07:00
name = "gnu-efi-${version}";
2015-09-17 22:12:13 -07:00
version = "3.0.3";
src = fetchurl {
2015-05-20 00:26:12 -07:00
url = "mirror://sourceforge/gnu-efi/${name}.tar.bz2";
2015-09-17 22:12:13 -07:00
sha256 = "1jxlypkgb8bd1c114x96i699ib0glb5aca9dv56j377x2ldg4c65";
};
2015-05-20 00:26:12 -07:00
buildInputs = [ pciutils ];
hardening_stackprotector = false;
makeFlags = [
2015-05-20 00:26:12 -07:00
"PREFIX=\${out}"
"CC=gcc"
"AS=as"
"LD=ld"
"AR=ar"
"RANLIB=ranlib"
"OBJCOPY=objcopy"
];
meta = with stdenv.lib; {
description = "GNU EFI development toolchain";
homepage = http://sourceforge.net/projects/gnu-efi/;
license = licenses.bsd3;
platforms = platforms.linux;
};
}