From a36e69c83df03f90391ea7b4040679bf38b0e43d Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Mon, 29 Jul 2024 08:49:38 -0700 Subject: [PATCH] xilinx-bootgen: xilinx_v2023.2 -> xilinx_v2024.1 --- pkgs/tools/misc/xilinx-bootgen/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/xilinx-bootgen/default.nix b/pkgs/tools/misc/xilinx-bootgen/default.nix index 1eece16d3511..0b06560742f8 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 rec { +stdenv.mkDerivation (finalAttrs: { pname = "xilinx-bootgen"; - version = "xilinx_v2023.2"; + version = "xilinx_v2024.1"; src = fetchFromGitHub { owner = "xilinx"; repo = "bootgen"; - rev = version; - hash = "sha256-YRaq36N6uBHyjuHQ5hCO35Y+y818NuSjg/js181iItA="; + rev = finalAttrs.version; + hash = "sha256-/gNAqjwfaD2NWxs2536XGv8g2IyRcQRHzgLcnCr4a34="; }; buildInputs = [ openssl ]; @@ -35,4 +35,4 @@ stdenv.mkDerivation rec { maintainers = [ maintainers.flokli ]; mainProgram = "bootgen"; }; -} +})