litemdview: init at 0.0.32

+61
+59
pkgs/applications/graphics/litemdview/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitea 4 + , gtkmm3 5 + , autoreconfHook 6 + , pkg-config 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "litemdview"; 11 + # litemdview -v 12 + version = "0.0.32"; 13 + 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 + }; 21 + 22 + buildInputs = [ 23 + gtkmm3 24 + ]; 25 + 26 + nativeBuildInputs = [ 27 + autoreconfHook 28 + pkg-config 29 + ]; 30 + 31 + meta = with lib; { 32 + homepage = "https://notabug.org/g0tsu/litemdview"; 33 + description = "A 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. 36 + 37 + Features: 38 + 39 + 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 + }; 59 + }
+2
pkgs/top-level/all-packages.nix
··· 32451 32452 synology-cloud-sync-decryption-tool = callPackage ../applications/networking/synology-cloud-sync-decryption-tool { }; 32453 32454 maestral = with python3Packages; toPythonApplication maestral; 32455 32456 maestral-gui = libsForQt5.callPackage ../applications/networking/maestral-qt { };
··· 32451 32452 synology-cloud-sync-decryption-tool = callPackage ../applications/networking/synology-cloud-sync-decryption-tool { }; 32453 32454 + litemdview = callPackage ../applications/graphics/litemdview { }; 32455 + 32456 maestral = with python3Packages; toPythonApplication maestral; 32457 32458 maestral-gui = libsForQt5.callPackage ../applications/networking/maestral-qt { };