summary refs log tree commit diff
path: root/pkgs/applications/editors/leo-editor
diff options
context:
space:
mode:
authorLeonardo Cecchi <leonardoce@interfree.it>2015-07-13 09:20:43 +0200
committerLeonardo Cecchi <leonardoce@interfree.it>2015-07-14 21:49:28 +0200
commit3f2de3eb64fea48a3da646d125b309c0e7f3f1db (patch)
tree4fde7d1443769fa27d67d22fdf111b3444e88c59 /pkgs/applications/editors/leo-editor
parentb2ae45bd770fc14134e51382d28e06f695f785a1 (diff)
leo-editor: init at 5.1
Diffstat (limited to 'pkgs/applications/editors/leo-editor')
-rw-r--r--pkgs/applications/editors/leo-editor/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/editors/leo-editor/default.nix b/pkgs/applications/editors/leo-editor/default.nix
new file mode 100644
index 0000000000000..4c7e3cc08af70
--- /dev/null
+++ b/pkgs/applications/editors/leo-editor/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, pythonPackages, fetchgit }:
+pythonPackages.buildPythonPackage rec {
+  name = "leo-editor-${version}";
+  version = "5.1";
+
+  namePrefix = "";
+
+  src = fetchgit {
+    url = "https://github.com/leo-editor/leo-editor";
+    rev = "refs/tags/Leo-${version}-final";
+    sha256 = "3cc5259609890bbde9cfee71f4f60b959b3f5b740f7d403c99ea2d9796b4758e";
+  };
+
+  propagatedBuildInputs = with pythonPackages; [ pyqt4 sqlite3 ];
+
+  meta = {
+    homepage = "http://leoeditor.com";
+    description = "A powerful folding editor";
+    longDescription = "Leo is a PIM, IDE and outliner that accelerates the work flow of programmers, authors and web designers.";
+    license = stdenv.lib.licenses.mit;
+    maintainers = with stdenv.lib.maintainers; [ leonardoce ];
+  };
+}