mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #8804 from leonardoce/leo-editor
leo-editor: init at 5.1
This commit is contained in:
commit
106c336a5f
23
pkgs/applications/editors/leo-editor/default.nix
Normal file
23
pkgs/applications/editors/leo-editor/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -11866,6 +11866,8 @@ let
|
||||
inherit (gnome) libglade;
|
||||
};
|
||||
|
||||
leo-editor = callPackage ../applications/editors/leo-editor { };
|
||||
|
||||
libowfat = callPackage ../development/libraries/libowfat { };
|
||||
|
||||
librecad = callPackage ../applications/misc/librecad { };
|
||||
|
Loading…
Reference in New Issue
Block a user