forked from mirrors/nixpkgs
wimboot: Init at 2.6.0
This commit is contained in:
parent
24c739c512
commit
f1221507f3
47
pkgs/tools/misc/wimboot/default.nix
Normal file
47
pkgs/tools/misc/wimboot/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ stdenv, fetchFromGitHub, fetchpatch, libbfd, zlib, libiberty }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "wimboot";
|
||||||
|
version = "2.6.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ipxe";
|
||||||
|
repo = "wimboot";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "134wqqr147az5vbj4szd0xffwa99b4rar7w33zm3119zsn7sd79k";
|
||||||
|
};
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = "-Wno-address-of-packed-member"; # Fails on gcc9
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix for newer binutils
|
||||||
|
(fetchpatch {
|
||||||
|
url =
|
||||||
|
"https://github.com/ipxe/wimboot/commit/91be50c17d4d9f463109d5baafd70f9fdadd86db.patch";
|
||||||
|
sha256 = "113448n49hmk8nz1dxbhxiciwl281zwalvb8z5p9xfnjvibj8274";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
# We cannot use sourceRoot because the patch wouldn't apply
|
||||||
|
postPatch = ''
|
||||||
|
cd src
|
||||||
|
'';
|
||||||
|
|
||||||
|
hardeningDisable = [ "pic" ];
|
||||||
|
|
||||||
|
buildInputs = [ libbfd zlib libiberty ];
|
||||||
|
makeFlags = [ "wimboot.x86_64.efi" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/wimboot/
|
||||||
|
cp wimboot.x86_64.efi $out/share/wimboot
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://ipxe.org/wimboot";
|
||||||
|
description = "Windows Imaging Format bootloader";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ das_j ajs124 ];
|
||||||
|
platforms = platforms.x86; # Fails on aarch64
|
||||||
|
};
|
||||||
|
}
|
|
@ -7183,6 +7183,8 @@ in
|
||||||
|
|
||||||
wifite2 = callPackage ../tools/networking/wifite2 { };
|
wifite2 = callPackage ../tools/networking/wifite2 { };
|
||||||
|
|
||||||
|
wimboot = callPackage ../tools/misc/wimboot { };
|
||||||
|
|
||||||
wireguard-tools = callPackage ../tools/networking/wireguard-tools { };
|
wireguard-tools = callPackage ../tools/networking/wireguard-tools { };
|
||||||
|
|
||||||
woff2 = callPackage ../development/web/woff2 { };
|
woff2 = callPackage ../development/web/woff2 { };
|
||||||
|
|
Loading…
Reference in a new issue