Unverified Commit 5bc5f317 authored by Luke Granger-Brown's avatar Luke Granger-Brown Committed by GitHub
Browse files

Merge pull request #248033 from lukegb/mvebu64boot

mvebu64boot: init at unstable-2022-10-20
parents e0703656 1eea8716
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ fetchFromGitHub
, stdenv
, lib
, ncurses
}:

stdenv.mkDerivation rec {
  pname = "mvebu64boot";
  version = "unstable-2022-10-20";

  src = fetchFromGitHub {
    owner = "pali";
    repo = "mvebu64boot";
    rev = "e7ca70eff2dc278607cc07f6654bbddacb2e4ff6";
    hash = "sha256-Y2yVr/BuOah5yMvF5EvM7frEUY8r+Hf4bNIKVkHgvQs=";
  };

  buildInputs = [
    ncurses
  ];

  installPhase = ''
    runHook preInstall
    install -D mvebu64boot $out/bin/mvebu64boot
    runHook postInstall
  '';

  meta = with lib; {
    description = "Boot 64-bit Marvell EBU SoC over UART";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ lukegb ];
    platforms = platforms.all;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9970,6 +9970,8 @@ with pkgs;
  multitail = callPackage ../tools/misc/multitail { };
  mvebu64boot = callPackage ../tools/misc/mvebu64boot { };
  mx-puppet-discord = callPackage ../servers/mx-puppet-discord { };
  mx-takeover = callPackage ../tools/security/mx-takeover { };