Merge pull request #8977 from AndersonTorres/cherrytree

Cherrytree: 0.35.8 -> 0.35.9

+27 -10
+27 -10
pkgs/applications/misc/cherrytree/default.nix
··· 1 { stdenv, fetchurl, python, pythonPackages, gettext, pygtksourceview, sqlite }: 2 3 stdenv.mkDerivation rec { 4 - name = "cherrytree-0.35.8"; 5 6 src = fetchurl { 7 url = "http://www.giuspen.com/software/${name}.tar.xz"; 8 - sha256 = "0vqc1idzd73f4q5f4zwwypj4jiivwnb4y0r3041h2pm08y1wgsd8"; 9 }; 10 11 - propagatedBuildInputs = [ pythonPackages.sqlite3 ]; 12 13 - buildInputs = with pythonPackages; [ python gettext wrapPython pygtk dbus pygtksourceview ]; 14 15 - pythonPath = with pythonPackages; [ pygtk dbus pygtksourceview ]; 16 17 patches = [ ./subprocess.patch ]; 18 ··· 27 28 doCheck = false; 29 30 - meta = { 31 - description = "A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file"; 32 homepage = http://www.giuspen.com/cherrytree; 33 - license = stdenv.lib.licenses.gpl3; 34 - platforms = with stdenv.lib.platforms; linux; 35 - }; 36 }
··· 1 { stdenv, fetchurl, python, pythonPackages, gettext, pygtksourceview, sqlite }: 2 3 + with stdenv.lib; 4 stdenv.mkDerivation rec { 5 + 6 + name = "cherrytree-${version}"; 7 + version = "0.35.9"; 8 9 src = fetchurl { 10 url = "http://www.giuspen.com/software/${name}.tar.xz"; 11 + sha256 = "14yahp0y13z3xkpwvprm7q9x3rj6jbzi0bryqlsn3bbafdq7wnac"; 12 }; 13 14 + propagatedBuildInputs = with pythonPackages; 15 + [ sqlite3 ]; 16 17 + buildInputs = with pythonPackages; 18 + [ python gettext wrapPython pygtk dbus pygtksourceview ]; 19 20 + pythonPath = with pythonPackages; 21 + [ pygtk dbus pygtksourceview ]; 22 23 patches = [ ./subprocess.patch ]; 24 ··· 33 34 doCheck = false; 35 36 + 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 }