mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #248033 from lukegb/mvebu64boot
mvebu64boot: init at unstable-2022-10-20
This commit is contained in:
commit
5bc5f31781
2 changed files with 36 additions and 0 deletions
34
pkgs/tools/misc/mvebu64boot/default.nix
Normal file
34
pkgs/tools/misc/mvebu64boot/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue