formiko: init at 1.4.3

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

+56
+52
pkgs/applications/editors/formiko/default.nix
···
··· 1 + { lib 2 + , buildPythonApplication 3 + , fetchFromGitHub 4 + , wrapGAppsHook 5 + , gobject-introspection 6 + , gtk3 7 + , docutils 8 + , gtksourceview 9 + , gtkspell3 10 + , librsvg 11 + , pygobject3 12 + , webkitgtk 13 + }: 14 + 15 + buildPythonApplication rec { 16 + pname = "formiko"; 17 + version = "1.4.3"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "ondratu"; 21 + repo = "formiko"; 22 + rev = version; 23 + sha256 = "0n7w585gbrpn2xcd5n04hivrjarpr2wj260y2kpxpgh93vn52sdi"; 24 + }; 25 + 26 + nativeBuildInputs = [ 27 + wrapGAppsHook 28 + gobject-introspection 29 + gtk3 30 + ]; 31 + propagatedBuildInputs = [ 32 + docutils 33 + gobject-introspection 34 + gtk3 35 + gtksourceview 36 + gtkspell3 37 + librsvg 38 + pygobject3 39 + webkitgtk 40 + ]; 41 + 42 + # Needs a display 43 + doCheck = false; 44 + 45 + meta = with lib; { 46 + description = "reStructuredText editor and live previewer"; 47 + homepage = "https://github.com/ondratu/formiko"; 48 + license = licenses.bsd3; 49 + maintainers = with maintainers; [ shamilton ]; 50 + platforms = platforms.linux; 51 + }; 52 + }
+4
pkgs/top-level/all-packages.nix
··· 22270 22271 formatter = callPackage ../applications/misc/formatter { }; 22272 22273 foxtrotgps = callPackage ../applications/misc/foxtrotgps { }; 22274 22275 fractal = callPackage ../applications/networking/instant-messengers/fractal { };
··· 22270 22271 formatter = callPackage ../applications/misc/formatter { }; 22272 22273 + formiko = with python3Packages; callPackage ../applications/editors/formiko { 22274 + inherit buildPythonApplication; 22275 + }; 22276 + 22277 foxtrotgps = callPackage ../applications/misc/foxtrotgps { }; 22278 22279 fractal = callPackage ../applications/networking/instant-messengers/fractal { };