nixpkgs/pkgs/applications/misc/cherrytree/default.nix
Ryan Mulligan 99547c4334 cherrytree: 0.37.6 -> 0.38.4
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/z6xvmmp8nc09wcg5wmgdlvg0vmawm2vn-cherrytree-0.38.4/bin/.cherrytree-wrapped -h` got 0 exit code
- ran `/nix/store/z6xvmmp8nc09wcg5wmgdlvg0vmawm2vn-cherrytree-0.38.4/bin/.cherrytree-wrapped --help` got 0 exit code
- ran `/nix/store/z6xvmmp8nc09wcg5wmgdlvg0vmawm2vn-cherrytree-0.38.4/bin/cherrytree -h` got 0 exit code
- ran `/nix/store/z6xvmmp8nc09wcg5wmgdlvg0vmawm2vn-cherrytree-0.38.4/bin/cherrytree --help` got 0 exit code
- found 0.38.4 with grep in /nix/store/z6xvmmp8nc09wcg5wmgdlvg0vmawm2vn-cherrytree-0.38.4
- found 0.38.4 in filename of file in /nix/store/z6xvmmp8nc09wcg5wmgdlvg0vmawm2vn-cherrytree-0.38.4
2018-03-07 23:24:18 -08:00

51 lines
1.5 KiB
Nix

{ stdenv, fetchurl, pythonPackages, gettext, sqlite }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "cherrytree-${version}";
version = "0.38.4";
src = fetchurl {
url = "http://www.giuspen.com/software/${name}.tar.xz";
sha256 = "1zazyxkrli77wahn4c1z24qyz5bwlayl335f2kdxb44dicrx58g2";
};
buildInputs = with pythonPackages;
[ python gettext wrapPython pygtk dbus-python pygtksourceview ];
pythonPath = with pythonPackages;
[ pygtk dbus-python pygtksourceview ];
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;
meta = {
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.
'';
homepage = http://www.giuspen.com/cherrytree;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.AndersonTorres ];
};
}