2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchurl, pythonPackages, gettext }:
|
2015-01-31 01:17:00 +00:00
|
|
|
|
2015-07-24 13:04:31 +00:00
|
|
|
with stdenv.lib;
|
2015-01-31 01:17:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-24 13:04:31 +00:00
|
|
|
|
|
|
|
name = "cherrytree-${version}";
|
2018-10-16 06:28:46 +00:00
|
|
|
version = "0.38.6";
|
2015-01-31 01:17:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://www.giuspen.com/software/${name}.tar.xz";
|
2018-10-16 06:28:46 +00:00
|
|
|
sha256 = "0b83ygv0y4lrclsyagmllkwiia62xkwij14i6z53avba191jvhma";
|
2015-01-31 01:17:00 +00:00
|
|
|
};
|
|
|
|
|
2015-07-24 13:04:31 +00:00
|
|
|
buildInputs = with pythonPackages;
|
2016-08-16 20:51:21 +00:00
|
|
|
[ python gettext wrapPython pygtk dbus-python pygtksourceview ];
|
2015-01-31 01:17:00 +00:00
|
|
|
|
2015-07-24 13:04:31 +00:00
|
|
|
pythonPath = with pythonPackages;
|
2016-08-16 20:51:21 +00:00
|
|
|
[ pygtk dbus-python pygtksourceview ];
|
2015-01-31 01:17:00 +00:00
|
|
|
|
|
|
|
patches = [ ./subprocess.patch ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python setup.py install --prefix="$out"
|
|
|
|
|
|
|
|
for file in "$out"/bin/*; do
|
|
|
|
wrapProgram "$file" \
|
|
|
|
--prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2016-07-05 20:59:29 +00:00
|
|
|
meta = {
|
2015-07-24 13:04:31 +00:00
|
|
|
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.
|
2016-07-05 20:59:29 +00:00
|
|
|
'';
|
2015-01-31 01:17:00 +00:00
|
|
|
homepage = http://www.giuspen.com/cherrytree;
|
2015-07-24 13:04:31 +00:00
|
|
|
license = licenses.gpl3;
|
2016-07-05 20:59:29 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
};
|
2015-01-31 01:17:00 +00:00
|
|
|
}
|