about summary refs log tree commit diff
path: root/pkgs/applications/misc/mepo/default.nix
blob: 1afcd3c3f1a7674aa82161a80deb3d6e0312e0ed (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
{ lib
, stdenv
, fetchFromSourcehut
, pkg-config
, zig
, makeWrapper
, curl
, SDL2
, SDL2_gfx
, SDL2_image
, SDL2_ttf
, jq
, ncurses
, inconsolata-nerdfont
, dmenu
, xdotool
, bemenu
, withX11 ? false
}:

let
  menuInputs = if withX11 then [ dmenu xdotool ] else [ bemenu ];
in stdenv.mkDerivation rec {
  pname = "mepo";
  version = "0.4.2";

  src = fetchFromSourcehut {
    owner = "~mil";
    repo = pname;
    rev = version;
    hash = "sha256-k6YXaqB3EwbDPlTvijZf10q+IYwt4/MiqGXL495KIcY=";
  };

  nativeBuildInputs = [ pkg-config zig makeWrapper ];

  buildInputs = [
    curl SDL2 SDL2_gfx SDL2_image SDL2_ttf inconsolata-nerdfont jq ncurses
  ] ++ menuInputs;

  preBuild = ''
    export HOME=$TMPDIR
  '';

  doCheck = true;
  checkPhase = ''
    runHook preCheck

    zig build test

    runHook postCheck
  '';

  installPhase = ''
    runHook preInstall

    zig build -Drelease-safe=true -Dcpu=baseline --prefix $out install

    runHook postInstall
  '';

  postInstall = ''
    wrapProgram $out/bin/mepo_dl.sh\
      --suffix PATH : ${lib.makeBinPath [ jq ncurses ]}
    wrapProgram $out/bin/mepo_ui_helper_menu.sh\
      --suffix PATH : ${lib.makeBinPath menuInputs}
    for script in $(grep -l jq out/bin/mepo_ui_menu_*.sh); do
      wrapProgram $script --suffix PATH : $out/bin:${lib.makeBinPath [ jq ]}
    done
    for prog in $out/bin/mepo*; do
      if [ ! -f $out/bin/.$(basename $prog)-wrapped ]; then
        wrapProgram $prog --suffix PATH : $out/bin
      fi
    done
  '';

  meta = with lib; {
    description = "Fast, simple, and hackable OSM map viewer";
    homepage = "https://sr.ht/~mil/mepo/";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ sikmir McSinyx ];
    platforms = platforms.linux;
  };
}