1 { lib, stdenv, fetchFromGitHub, openssl }:
4 pname = "xilinx-bootgen";
5 version = "unstable-2019-10-23";
7 src = fetchFromGitHub {
10 rev = "f9f477adf243fa40bc8c7316a7aac37a0efd426d";
11 sha256 = "1qciz3jkzy0z0lcgqnhch9pqj0202mk5ghzp2m9as5pzk8n8hrbz";
14 buildInputs = [ openssl ];
16 enableParallelBuilding = true;
19 install -Dm755 bootgen $out/bin/bootgen
23 description = "Generate Boot Images for Xilinx Zynq and ZU+ SoCs";
25 Bootgen for Xilinx Zynq and ZU+ SoCs, without code related to generating
26 obfuscated key and without code to support FPGA encryption and
27 authentication. These features are only available as part of Bootgen
28 shipped with Vivado tools.
30 For more details about Bootgen, please refer to Xilinx UG1283.
32 homepage = "https://github.com/Xilinx/bootgen";
33 license = licenses.asl20;
34 platforms = platforms.linux;
35 maintainers = [ maintainers.flokli ];