mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
19a6554e28
Among other changes, the xilinx_v2023.1 tag adds a `read` subcommand for printing the layout of xilinx boot files.
38 lines
1.0 KiB
Nix
38 lines
1.0 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 ];
|
|
};
|
|
}
|