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.
This commit is contained in:
Jared Baur 2023-07-10 09:15:21 -07:00
parent 130e30de7d
commit 19a6554e28
No known key found for this signature in database

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "xilinx-bootgen";
version = "unstable-2019-10-23";
version = "xilinx_v2023.1";
src = fetchFromGitHub {
owner = "xilinx";
repo = "bootgen";
rev = "f9f477adf243fa40bc8c7316a7aac37a0efd426d";
sha256 = "1qciz3jkzy0z0lcgqnhch9pqj0202mk5ghzp2m9as5pzk8n8hrbz";
rev = version;
sha256 = "sha256-pEkpZachZX2tOhH2Odb2fZWqJehLILE/0Z500xRuRzU=";
};
buildInputs = [ openssl ];