nixpkgs/pkgs/tools/misc/xilinx-bootgen/default.nix
Jared Baur 19a6554e28
xilinx-bootgen: unstable-2019-10-23 -> xilinx_v2023.1
Among other changes, the xilinx_v2023.1 tag adds a `read` subcommand for
printing the layout of xilinx boot files.
2023-07-10 09:15:21 -07: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 ];
};
}