···1{ stdenv, fetchurl, python, pythonPackages, gettext, pygtksourceview, sqlite }:
203stdenv.mkDerivation rec {
4- name = "cherrytree-0.35.8";
0056 src = fetchurl {
7 url = "http://www.giuspen.com/software/${name}.tar.xz";
8- sha256 = "0vqc1idzd73f4q5f4zwwypj4jiivwnb4y0r3041h2pm08y1wgsd8";
9 };
1011- propagatedBuildInputs = [ pythonPackages.sqlite3 ];
01213- buildInputs = with pythonPackages; [ python gettext wrapPython pygtk dbus pygtksourceview ];
01415- pythonPath = with pythonPackages; [ pygtk dbus pygtksourceview ];
01617 patches = [ ./subprocess.patch ];
18···2728 doCheck = false;
2930- meta = {
31- description = "A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file";
000000000032 homepage = http://www.giuspen.com/cherrytree;
33- license = stdenv.lib.licenses.gpl3;
34- platforms = with stdenv.lib.platforms; linux;
35- };
036}
···1{ stdenv, fetchurl, python, pythonPackages, gettext, pygtksourceview, sqlite }:
23+with stdenv.lib;
4stdenv.mkDerivation rec {
5+6+ name = "cherrytree-${version}";
7+ version = "0.35.9";
89 src = fetchurl {
10 url = "http://www.giuspen.com/software/${name}.tar.xz";
11+ sha256 = "14yahp0y13z3xkpwvprm7q9x3rj6jbzi0bryqlsn3bbafdq7wnac";
12 };
1314+ propagatedBuildInputs = with pythonPackages;
15+ [ sqlite3 ];
1617+ buildInputs = with pythonPackages;
18+ [ python gettext wrapPython pygtk dbus pygtksourceview ];
1920+ pythonPath = with pythonPackages;
21+ [ pygtk dbus pygtksourceview ];
2223 patches = [ ./subprocess.patch ];
24···3334 doCheck = false;
3536+ meta = {
37+ description = "An hierarchical note taking application";
38+ longDescription = ''
39+ Cherrytree is an hierarchical note taking application,
40+ featuring rich text, syntax highlighting and powerful search
41+ capabilities. It organizes all information in units called
42+ "nodes", as in a tree, and can be very useful to store any piece
43+ of information, from tables and links to pictures and even entire
44+ documents. All those little bits of information you have scattered
45+ around your hard drive can be conveniently placed into a
46+ Cherrytree document where you can easily find it.
47+ '';
48 homepage = http://www.giuspen.com/cherrytree;
49+ license = licenses.gpl3;
50+ platforms = platforms.linux;
51+ maintainers = [ maintainers.AndersonTorres ];
52+ };
53}