cherrytree: 0.39.0 -> 0.39.2

This commit is contained in:
AndersonTorres 2020-04-05 14:33:23 -03:00
parent f5b4c91be5
commit 3e03c1bbb1

View File

@ -1,12 +1,15 @@
{ lib, fetchurl, pythonPackages, gettext }: { lib, fetchFromGitHub, pythonPackages, gettext }:
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "cherrytree"; 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 ]; nativeBuildInputs = [ gettext ];
@ -20,17 +23,16 @@ pythonPackages.buildPythonApplication rec {
meta = with lib; { meta = with lib; {
description = "An hierarchical note taking application"; description = "An hierarchical note taking application";
longDescription = '' longDescription = ''
Cherrytree is an hierarchical note taking application, Cherrytree is an hierarchical note taking application, featuring rich
featuring rich text, syntax highlighting and powerful search text, syntax highlighting and powerful search capabilities. It organizes
capabilities. It organizes all information in units called all information in units called "nodes", as in a tree, and can be very
"nodes", as in a tree, and can be very useful to store any piece useful to store any piece of information, from tables and links to
of information, from tables and links to pictures and even entire pictures and even entire documents. All those little bits of information
documents. All those little bits of information you have scattered you have scattered around your hard drive can be conveniently placed into
around your hard drive can be conveniently placed into a a Cherrytree document where you can easily find it.
Cherrytree document where you can easily find it.
''; '';
homepage = "http://www.giuspen.com/cherrytree"; homepage = "http://www.giuspen.com/cherrytree";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ ];
}; };
} }