Merge pull request #24551 from ndowens/leoeditor

leo-editor: 5.3 -> 5.5

authored by Jörg Thalheim and committed by GitHub dac0e94e 6df9e847

+5 -5
+5 -5
pkgs/applications/editors/leo-editor/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "leo-editor-${version}"; 5 - version = "5.3"; 5 + version = "5.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "leo-editor"; 9 9 repo = "leo-editor"; 10 10 rev = version; 11 - sha256 = "0whbay8ilabzpxdjaxv447y6bqbsilx161fv7wa15v3qqm2kapsp"; 11 + sha256 = "0crzljirzfiy9xn02ydd23clmd8bzdjxkyxdqsvdkgfy9j41b8hr"; 12 12 }; 13 13 14 14 dontBuild = true; 15 15 16 - buildInputs = [ makeWrapper python3Packages.python ]; 16 + nativeBuildInputs = [ makeWrapper python3Packages.python ]; 17 17 propagatedBuildInputs = with python3Packages; [ pyqt5 ]; 18 18 19 19 desktopItem = makeDesktopItem rec { ··· 56 56 ''; 57 57 58 58 meta = with stdenv.lib; { 59 - homepage = "http://leoeditor.com"; 59 + homepage = http://leoeditor.com; 60 60 description = "A powerful folding editor"; 61 61 longDescription = "Leo is a PIM, IDE and outliner that accelerates the work flow of programmers, authors and web designers."; 62 - license = with licenses; [ mit ]; 62 + license = licenses.mit; 63 63 maintainers = with maintainers; [ leonardoce ramkromberg ]; 64 64 }; 65 65 }