mvebu64boot: init at unstable-2022-10-20

This commit is contained in:
Luke Granger-Brown 2023-08-08 23:33:05 +01:00
parent 9047000354
commit 1eea8716f0
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ 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;
};
}

View file

@ -9968,6 +9968,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 { };