summary refs log blame commit diff
path: root/pkgs/tools/misc/wimboot/default.nix
blob: 3c686c3093748e3f5359bb45da976ff7424624ce (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                          


                         
                    




                         
                                                                   

    
                                 



                                          
                                     



                             




                                            
                    

                                                      
                                
                                                     
                                   

    
{ lib, stdenv, fetchFromGitHub, libbfd, zlib, libiberty }:

stdenv.mkDerivation rec {
  pname = "wimboot";
  version = "2.7.6";

  src = fetchFromGitHub {
    owner = "ipxe";
    repo = "wimboot";
    rev = "v${version}";
    sha256 = "sha256-AFPuHxcDM/cdEJ5nRJnVbPk7Deg97NeSMsg/qwytZX4=";
  };

  sourceRoot = "${src.name}/src";

  buildInputs = [ libbfd zlib libiberty ];
  makeFlags = [ "wimboot.x86_64.efi" ];

  env.NIX_CFLAGS_COMPILE = toString [
    # Needed with GCC 12
    "-Wno-error=array-bounds"
  ];

  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 = [ "x86_64-linux" ];
  };
}