leo-editor: init at 5.1

+25
+23
pkgs/applications/editors/leo-editor/default.nix
··· 1 + { stdenv, pythonPackages, fetchgit }: 2 + pythonPackages.buildPythonPackage rec { 3 + name = "leo-editor-${version}"; 4 + version = "5.1"; 5 + 6 + namePrefix = ""; 7 + 8 + src = fetchgit { 9 + url = "https://github.com/leo-editor/leo-editor"; 10 + rev = "refs/tags/Leo-${version}-final"; 11 + sha256 = "3cc5259609890bbde9cfee71f4f60b959b3f5b740f7d403c99ea2d9796b4758e"; 12 + }; 13 + 14 + propagatedBuildInputs = with pythonPackages; [ pyqt4 sqlite3 ]; 15 + 16 + meta = { 17 + homepage = "http://leoeditor.com"; 18 + description = "A powerful folding editor"; 19 + longDescription = "Leo is a PIM, IDE and outliner that accelerates the work flow of programmers, authors and web designers."; 20 + license = stdenv.lib.licenses.mit; 21 + maintainers = with stdenv.lib.maintainers; [ leonardoce ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 11845 11845 inherit (gnome) libglade; 11846 11846 }; 11847 11847 11848 + leo-editor = callPackage ../applications/editors/leo-editor { }; 11849 + 11848 11850 libowfat = callPackage ../development/libraries/libowfat { }; 11849 11851 11850 11852 librecad = callPackage ../applications/misc/librecad { };