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

32 lines
779 B
Nix
Raw Normal View History

2021-08-15 13:40:30 +00:00
{ lib, stdenv, fetchFromGitHub, libbfd, zlib, libiberty }:
2020-02-01 16:24:41 +00:00
stdenv.mkDerivation rec {
pname = "wimboot";
2021-08-15 13:40:30 +00:00
version = "2.7.3";
2020-02-01 16:24:41 +00:00
src = fetchFromGitHub {
owner = "ipxe";
repo = "wimboot";
rev = "v${version}";
2021-08-15 13:40:30 +00:00
sha256 = "12c677agkmiqs35qfpqfj7c4kxkizhbk9l6hig36dslzp4fwpl70";
2020-02-01 16:24:41 +00:00
};
2021-08-15 13:40:30 +00:00
sourceRoot = "source/src";
2020-02-01 16:24:41 +00:00
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; {
2020-02-01 16:24:41 +00:00
homepage = "https://ipxe.org/wimboot";
description = "Windows Imaging Format bootloader";
license = licenses.gpl2Plus;
2020-02-01 16:24:41 +00:00
maintainers = with maintainers; [ das_j ajs124 ];
platforms = platforms.x86; # Fails on aarch64
};
}