about summary refs log tree commit diff
path: root/pkgs/by-name/ne/nemu/package.nix
blob: c57b4dca6ec4fd668b9a75dc00bcb2deee0e6783 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{ busybox
, cmake
, coreutils
, dbus
, fetchFromGitHub
, gettext
, graphviz
, json_c
, lib
, libarchive
, libusb1
, libxml2
, makeWrapper
, ncurses
, ninja
, openssl
, picocom
, pkg-config
, qemu
, socat
, sqlite
, stdenv
, systemd
, tigervnc
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "nemu";
  version = "3.3.1";

  src = fetchFromGitHub {
    owner = "nemuTUI";
    repo = "nemu";
    rev = "v${finalAttrs.version}";
    hash = "sha256-6WzqBkspKKs1e8kg1i71ntZHa78s5pJ1u02mXvzpiEc=";
  };

  cmakeFlags = [
    "-DNM_WITH_DBUS=ON"
    "-DNM_WITH_NETWORK_MAP=ON"
    "-DNM_WITH_REMOTE=ON"
    "-DNM_WITH_USB=ON"
  ];

  nativeBuildInputs = [
    cmake
    ninja
    pkg-config
    makeWrapper
  ];

  buildInputs = [
    busybox # for start-stop-daemon
    coreutils
    dbus
    gettext
    graphviz
    json_c
    libarchive
    libusb1
    libxml2
    ncurses
    openssl
    picocom
    qemu
    socat
    sqlite
    systemd # for libudev
    tigervnc
  ];

  runtimeDependencies = [
    busybox
    picocom
    qemu
    socat
    tigervnc
  ];

  postPatch = ''
    substituteInPlace nemu.cfg.sample \
      --replace-fail /usr/bin/vncviewer ${tigervnc}/bin/vncviewer \
      --replace-fail "qemu_bin_path = /usr/bin" "qemu_bin_path = ${qemu}/bin"

    substituteInPlace sh/ntty \
      --replace-fail /usr/bin/socat ${socat}/bin/socat \
      --replace-fail /usr/bin/picocom ${picocom}/bin/picocom \
      --replace-fail start-stop-daemon ${busybox}/bin/start-stop-daemon

    substituteInPlace sh/setup_nemu_nonroot.sh \
      --replace-fail /usr/bin/nemu $out/bin/nemu
  '';

  postInstall = ''
    wrapProgram $out/share/nemu/scripts/upgrade_db.sh \
      --prefix PATH : "${sqlite}/bin"
  '';

  meta = {
    changelog = "https://github.com/nemuTUI/nemu/releases/tag/v${finalAttrs.version}";
    description = "Ncurses UI for QEMU";
    homepage = "https://github.com/nemuTUI/nemu";
    license = lib.licenses.bsd2;
    mainProgram = "nemu";
    maintainers = with lib.maintainers; [ msanft ];
    platforms = lib.platforms.unix;
  };
})