depot/third_party/nixpkgs/pkgs/by-name/xi/xilinx-bootgen/package.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

43 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
openssl,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xilinx-bootgen";
version = "xilinx_v2024.1";
src = fetchFromGitHub {
owner = "xilinx";
repo = "bootgen";
rev = finalAttrs.version;
hash = "sha256-/gNAqjwfaD2NWxs2536XGv8g2IyRcQRHzgLcnCr4a34=";
};
buildInputs = [ openssl ];
enableParallelBuilding = true;
installPhase = ''
install -Dm755 bootgen $out/bin/bootgen
'';
meta = {
description = "Generate Boot Images for Xilinx Zynq and ZU+ SoCs";
longDescription = ''
Bootgen for Xilinx Zynq and ZU+ SoCs, without code related to generating
obfuscated key and without code to support FPGA encryption and
authentication. These features are only available as part of Bootgen
shipped with Vivado tools.
For more details about Bootgen, please refer to Xilinx UG1283.
'';
homepage = "https://github.com/Xilinx/bootgen";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.flokli lib.maintainers.jmbaur ];
mainProgram = "bootgen";
};
})