biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / mvebu64boot / default.nix
blob0c682cebd5e663492ca09cfa11426f11b78cc92b
1 { fetchFromGitHub
2 , stdenv
3 , lib
4 , ncurses
5 }:
7 stdenv.mkDerivation rec {
8   pname = "mvebu64boot";
9   version = "unstable-2022-10-20";
11   src = fetchFromGitHub {
12     owner = "pali";
13     repo = "mvebu64boot";
14     rev = "e7ca70eff2dc278607cc07f6654bbddacb2e4ff6";
15     hash = "sha256-Y2yVr/BuOah5yMvF5EvM7frEUY8r+Hf4bNIKVkHgvQs=";
16   };
18   buildInputs = [
19     ncurses
20   ];
22   installPhase = ''
23     runHook preInstall
24     install -D mvebu64boot $out/bin/mvebu64boot
25     runHook postInstall
26   '';
28   meta = with lib; {
29     description = "Boot 64-bit Marvell EBU SoC over UART";
30     license = licenses.gpl3Only;
31     maintainers = with maintainers; [ lukegb ];
32     platforms = platforms.all;
33     mainProgram = "mvebu64boot";
34   };