mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
32 lines
778 B
Nix
32 lines
778 B
Nix
{ lib, stdenv, fetchFromGitHub, libbfd, zlib, libiberty }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wimboot";
|
|
version = "2.7.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ipxe";
|
|
repo = "wimboot";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LaPH6nGQanweAG0niS75hr7zbO/9A3iZjS8wHD//oJ4=";
|
|
};
|
|
|
|
sourceRoot = "source/src";
|
|
|
|
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 lib; {
|
|
homepage = "https://ipxe.org/wimboot";
|
|
description = "Windows Imaging Format bootloader";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ das_j ajs124 ];
|
|
platforms = platforms.x86; # Fails on aarch64
|
|
};
|
|
}
|