summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-04-02 23:37:27 +0200
committerGitHub <noreply@github.com>2017-04-02 23:37:27 +0200
commitdac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b (patch)
tree47e482f9b828e96ba4eddd1631f12382dee08b8a /pkgs
parent6df9e8477350c5499d750066821f88ced3bd0127 (diff)
parent3d53b36bc3fa088e59716c51d9cf0891efb0a017 (diff)
downloadnixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.tar
nixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.tar.gz
nixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.tar.bz2
nixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.tar.lz
nixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.tar.xz
nixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.tar.zst
nixpkgs-dac0e94e85113f6fb2e7aea94a38c8cc4d70bb3b.zip
Merge pull request #24551 from ndowens/leoeditor
leo-editor: 5.3 -> 5.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/leo-editor/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/leo-editor/default.nix b/pkgs/applications/editors/leo-editor/default.nix
index 65fb927d48e..81f9ddd96d2 100644
--- a/pkgs/applications/editors/leo-editor/default.nix
+++ b/pkgs/applications/editors/leo-editor/default.nix
@@ -2,18 +2,18 @@
 
 stdenv.mkDerivation rec {
   name = "leo-editor-${version}";
-  version = "5.3";
+  version = "5.5";
 
   src = fetchFromGitHub {
     owner = "leo-editor";
     repo = "leo-editor";
     rev = version;
-    sha256 = "0whbay8ilabzpxdjaxv447y6bqbsilx161fv7wa15v3qqm2kapsp";
+    sha256 = "0crzljirzfiy9xn02ydd23clmd8bzdjxkyxdqsvdkgfy9j41b8hr";
   };
 
   dontBuild = true;
 
-  buildInputs = [ makeWrapper python3Packages.python ];
+  nativeBuildInputs = [ makeWrapper python3Packages.python ];
   propagatedBuildInputs = with python3Packages; [ pyqt5 ];
 
   desktopItem = makeDesktopItem rec {
@@ -56,10 +56,10 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = "http://leoeditor.com";
+    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 = with licenses; [ mit ];
+    license = licenses.mit;
     maintainers = with maintainers; [ leonardoce ramkromberg ];
   };
 }