about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/mvebu64boot/default.nix
blob: c2bb63186c3f00fec412ea4aa90224300197fcc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
  };
}