Unverified Commit 179867eb authored by Florian Klink's avatar Florian Klink Committed by GitHub
Browse files

Merge pull request #330886 from jmbaur/bootgen-2024.1

xilinx-bootgen: update, format, move to by-name
parents 884687b1 303bc9a0
Loading
Loading
Loading
Loading
+15 −10
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, openssl }:
{
  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 ];
@@ -19,7 +24,7 @@ stdenv.mkDerivation rec {
    install -Dm755 bootgen $out/bin/bootgen
  '';

  meta = with lib; {
  meta = {
    description = "Generate Boot Images for Xilinx Zynq and ZU+ SoCs";
    longDescription = ''
      Bootgen for Xilinx Zynq and ZU+ SoCs, without code related to generating
@@ -30,9 +35,9 @@ stdenv.mkDerivation rec {
      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 ];
    license = lib.licenses.asl20;
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.flokli lib.maintainers.jmbaur ];
    mainProgram = "bootgen";
  };
}
})
+0 −2
Original line number Diff line number Diff line
@@ -27731,8 +27731,6 @@ with pkgs;
  xf86_video_nested = callPackage ../os-specific/linux/xf86-video-nested { };
  xilinx-bootgen = callPackage ../tools/misc/xilinx-bootgen { };
  xorg_sys_opengl = callPackage ../os-specific/linux/opengl/xorg-sys { };
  zd1211fw = callPackage ../os-specific/linux/firmware/zd1211 { };