about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2020-04-15 00:37:40 -0300
committerGitHub <noreply@github.com>2020-04-15 00:37:40 -0300
commita9359f33b0c7544c7950f2829d85a16829624c04 (patch)
tree211221650555ade8604c68a7b909cfbdf81d2727 /pkgs/applications
parentdbc0e855edfc1d4215346af23960bb085f6b80e8 (diff)
parent3e03c1bbb19e89a631f0e625a1da09f873830203 (diff)
downloadnixlib-a9359f33b0c7544c7950f2829d85a16829624c04.tar
nixlib-a9359f33b0c7544c7950f2829d85a16829624c04.tar.gz
nixlib-a9359f33b0c7544c7950f2829d85a16829624c04.tar.bz2
nixlib-a9359f33b0c7544c7950f2829d85a16829624c04.tar.lz
nixlib-a9359f33b0c7544c7950f2829d85a16829624c04.tar.xz
nixlib-a9359f33b0c7544c7950f2829d85a16829624c04.tar.zst
nixlib-a9359f33b0c7544c7950f2829d85a16829624c04.zip
Merge pull request #84398 from AndersonTorres/update-cherrytree
cherrytree: 0.39.0 -> 0.39.2
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/cherrytree/default.nix30
1 files changed, 16 insertions, 14 deletions
diff --git a/pkgs/applications/misc/cherrytree/default.nix b/pkgs/applications/misc/cherrytree/default.nix
index 72279e84909c..7c00add77971 100644
--- a/pkgs/applications/misc/cherrytree/default.nix
+++ b/pkgs/applications/misc/cherrytree/default.nix
@@ -1,12 +1,15 @@
-{ lib, fetchurl, pythonPackages, gettext }:
+{ lib, fetchFromGitHub, pythonPackages, gettext }:
 
 pythonPackages.buildPythonApplication rec {
   pname = "cherrytree";
-  version = "0.39.1";
+  version = "0.39.2";
+
+  src = fetchFromGitHub {
+    owner = "giuspen";
+    repo = "cherrytree";
+    rev = version;
+    sha256 = "1l6wh24bhp4yhmsfmc0r4n2n10nlilkv4cmv5sfl80i250fiw7xa";
 
-  src = fetchurl {
-    url = "https://www.giuspen.com/software/${pname}-${version}.tar.xz";
-    sha256 = "0qhycblnixvbybzr8psgmgcpfs6jc9m0p2h9lmd5zmiaggqlcsv7";
   };
 
   nativeBuildInputs = [ gettext ];
@@ -20,17 +23,16 @@ pythonPackages.buildPythonApplication rec {
   meta = with lib; {
     description = "An hierarchical note taking application";
     longDescription = ''
-      Cherrytree is an hierarchical note taking application,
-      featuring rich text, syntax highlighting and powerful search
-      capabilities. It organizes all information in units called
-      "nodes", as in a tree, and can be very useful to store any piece
-      of information, from tables and links to pictures and even entire
-      documents. All those little bits of information you have scattered
-      around your hard drive can be conveniently placed into a
-      Cherrytree document where you can easily find it.
+      Cherrytree is an hierarchical note taking application, featuring rich
+      text, syntax highlighting and powerful search capabilities. It organizes
+      all information in units called "nodes", as in a tree, and can be very
+      useful to store any piece of information, from tables and links to
+      pictures and even entire documents. All those little bits of information
+      you have scattered around your hard drive can be conveniently placed into
+      a Cherrytree document where you can easily find it.
     '';
     homepage = "http://www.giuspen.com/cherrytree";
     license = licenses.gpl3;
-    maintainers = with maintainers; [ AndersonTorres ];
+    maintainers = with maintainers; [ ];
   };
 }