From 19a6554e28dab9015c300a904528a342c8ea6275 Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Mon, 10 Jul 2023 09:15:21 -0700 Subject: [PATCH] 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. --- pkgs/tools/misc/xilinx-bootgen/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/xilinx-bootgen/default.nix b/pkgs/tools/misc/xilinx-bootgen/default.nix index 5d0c80c55bf..f6619e025d3 100644 --- a/pkgs/tools/misc/xilinx-bootgen/default.nix +++ b/pkgs/tools/misc/xilinx-bootgen/default.nix @@ -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 ];