about summary refs log tree commit diff
path: root/pkgs/applications/editors/thiefmd/default.nix
blob: 7f265aefcd02cce02c7765e66c2f09709e2b39ad (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
{ lib, stdenv, fetchFromGitHub, wrapGAppsHook, cmake, desktop-file-utils, glib
, meson, ninja, pkg-config, vala, clutter, discount, gtk3, gtksourceview4, gtkspell3
, libarchive, libgee, libhandy, libsecret, link-grammar, webkitgtk }:

stdenv.mkDerivation rec {
  pname = "thiefmd";
  version = "0.2.5-stability";

  src = fetchFromGitHub {
    owner = "kmwallio";
    repo = "ThiefMD";
    rev = "v${version}";
    sha256 = "sha256-cUZ7NVGe4e9ZISo9gjWFuDNCyF3rsQtrDX+ureyqtwM=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    cmake desktop-file-utils glib meson wrapGAppsHook
    ninja pkg-config vala
  ];

  buildInputs = [
    clutter discount gtk3 gtksourceview4 gtkspell3
    libarchive libgee libhandy libsecret link-grammar
    webkitgtk
  ];

  dontUseCmakeConfigure = true;

  postInstall = ''
    mv $out/share/applications/com.github.kmwallio.thiefmd.desktop \
      $out/share/applications/thiefmd.desktop
    substituteInPlace $out/share/applications/thiefmd.desktop \
      --replace 'Exec=com.github.kmwallio.' Exec=$out/bin/

    makeWrapper $out/bin/com.github.kmwallio.thiefmd \
      $out/bin/thiefmd \
      --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/"
  '';

  meta = with lib; {
    description = "Markdown & Fountain editor that helps with organization and management";
    homepage = "https://thiefmd.com";
    license = licenses.gpl3Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ wolfangaukang ];
  };
}