xilinx-bootgen: xilinx_v2023.2 -> xilinx_v2024.1

This commit is contained in:
Jared Baur 2024-07-29 08:49:38 -07:00
parent f4f322d142
commit a36e69c83d
No known key found for this signature in database

View File

@ -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";
};
}
})