biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / litemdview / default.nix
blobe07c22165277d688a5527b5ab5c6b0cb01e43bfc
1 { lib
2 , stdenv
3 , fetchFromGitea
4 , gtkmm3
5 , autoreconfHook
6 , pkg-config
7 }:
9 stdenv.mkDerivation rec {
10   pname = "litemdview";
11   # litemdview -v
12   version = "0.0.32";
14   src = fetchFromGitea {
15     domain = "notabug.org";
16     owner = "g0tsu";
17     repo = "litemdview";
18     rev = "litemdview-0.0.32";
19     hash = "sha256-XGjP+7i3mYCEzPYwVY+75DARdXJFY4vUWHFpPeoNqAE=";
20   };
22   buildInputs = [
23     gtkmm3
24   ];
26   nativeBuildInputs = [
27     autoreconfHook
28     pkg-config
29   ];
31   meta = with lib; {
32     homepage = "https://notabug.org/g0tsu/litemdview";
33     description = "Suckless markdown viewer";
34     longDescription = ''
35       LiteMDview is a lightweight, extremely fast markdown viewer with lots of useful features. One of them is ability to use your prefered text editor to edit markdown files, every time you save the file, litemdview reloads those changes (I call it live-reload). It has a convinient navigation through local directories, has support for a basic "git-like" folders hierarchy as well as vimwiki projects.
37       Features:
40         - Does not use any of those bloated gecko(servo)-blink engines
41         - Lightweight and fast
42         - Live reload
43         - Convinient key bindings
44         - Supports text zooming
45         - Supports images
46         - Supports links
47         - Navigation history
48         - Cool name which associates with 1337, at least for me :)
49         - Builtin markdown css themes
50         - Supports emoji™️
51         - vimwiki support
52         - Basic html support (very simple offline documents in html)
53         - Syntax highlighting
54     '';
55     license = licenses.gpl2Only;
56     maintainers = with maintainers; [ WhiteBlackGoose ];
57     platforms = platforms.linux;
58     mainProgram = "litemdview";
59   };