depot/third_party/nixpkgs/pkgs/tools/misc/xilinx-bootgen/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

38 lines
1 KiB
Nix

{ lib, stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
pname = "xilinx-bootgen";
version = "xilinx_v2023.1";
src = fetchFromGitHub {
owner = "xilinx";
repo = "bootgen";
rev = version;
sha256 = "sha256-pEkpZachZX2tOhH2Odb2fZWqJehLILE/0Z500xRuRzU=";
};
buildInputs = [ openssl ];
enableParallelBuilding = true;
installPhase = ''
install -Dm755 bootgen $out/bin/bootgen
'';
meta = with lib; {
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 = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.flokli ];
mainProgram = "bootgen";
};
}