···11{ stdenv, fetchurl, python, pythonPackages, gettext, pygtksourceview, sqlite }:
2233+with stdenv.lib;
34stdenv.mkDerivation rec {
44- name = "cherrytree-0.35.8";
55+66+ name = "cherrytree-${version}";
77+ version = "0.35.9";
5869 src = fetchurl {
710 url = "http://www.giuspen.com/software/${name}.tar.xz";
88- sha256 = "0vqc1idzd73f4q5f4zwwypj4jiivwnb4y0r3041h2pm08y1wgsd8";
1111+ sha256 = "14yahp0y13z3xkpwvprm7q9x3rj6jbzi0bryqlsn3bbafdq7wnac";
912 };
10131111- propagatedBuildInputs = [ pythonPackages.sqlite3 ];
1414+ propagatedBuildInputs = with pythonPackages;
1515+ [ sqlite3 ];
12161313- buildInputs = with pythonPackages; [ python gettext wrapPython pygtk dbus pygtksourceview ];
1717+ buildInputs = with pythonPackages;
1818+ [ python gettext wrapPython pygtk dbus pygtksourceview ];
14191515- pythonPath = with pythonPackages; [ pygtk dbus pygtksourceview ];
2020+ pythonPath = with pythonPackages;
2121+ [ pygtk dbus pygtksourceview ];
16221723 patches = [ ./subprocess.patch ];
1824···27332834 doCheck = false;
29353030- meta = {
3131- description = "A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file";
3636+ meta = {
3737+ description = "An hierarchical note taking application";
3838+ longDescription = ''
3939+ Cherrytree is an hierarchical note taking application,
4040+ featuring rich text, syntax highlighting and powerful search
4141+ capabilities. It organizes all information in units called
4242+ "nodes", as in a tree, and can be very useful to store any piece
4343+ of information, from tables and links to pictures and even entire
4444+ documents. All those little bits of information you have scattered
4545+ around your hard drive can be conveniently placed into a
4646+ Cherrytree document where you can easily find it.
4747+ '';
3248 homepage = http://www.giuspen.com/cherrytree;
3333- license = stdenv.lib.licenses.gpl3;
3434- platforms = with stdenv.lib.platforms; linux;
3535- };
4949+ license = licenses.gpl3;
5050+ platforms = platforms.linux;
5151+ maintainers = [ maintainers.AndersonTorres ];
5252+ };
3653}