leo-editor: 5.3 -> 5.5

This commit is contained in:
ndowens 2017-04-01 20:58:13 -05:00
parent affce1e246
commit 3d53b36bc3

View File

@ -2,18 +2,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "leo-editor-${version}"; name = "leo-editor-${version}";
version = "5.3"; version = "5.5";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "leo-editor"; owner = "leo-editor";
repo = "leo-editor"; repo = "leo-editor";
rev = version; rev = version;
sha256 = "0whbay8ilabzpxdjaxv447y6bqbsilx161fv7wa15v3qqm2kapsp"; sha256 = "0crzljirzfiy9xn02ydd23clmd8bzdjxkyxdqsvdkgfy9j41b8hr";
}; };
dontBuild = true; dontBuild = true;
buildInputs = [ makeWrapper python3Packages.python ]; nativeBuildInputs = [ makeWrapper python3Packages.python ];
propagatedBuildInputs = with python3Packages; [ pyqt5 ]; propagatedBuildInputs = with python3Packages; [ pyqt5 ];
desktopItem = makeDesktopItem rec { desktopItem = makeDesktopItem rec {
@ -56,10 +56,10 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "http://leoeditor.com"; homepage = http://leoeditor.com;
description = "A powerful folding editor"; description = "A powerful folding editor";
longDescription = "Leo is a PIM, IDE and outliner that accelerates the work flow of programmers, authors and web designers."; longDescription = "Leo is a PIM, IDE and outliner that accelerates the work flow of programmers, authors and web designers.";
license = with licenses; [ mit ]; license = licenses.mit;
maintainers = with maintainers; [ leonardoce ramkromberg ]; maintainers = with maintainers; [ leonardoce ramkromberg ];
}; };
} }