mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 00:54:11 +00:00
b5a7d39405
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cherrytree/versions. These checks were done: - built on NixOS - /nix/store/ldddgcpac0rvfnn1f06dgscaqws2rv9k-cherrytree-0.38.5/bin/.cherrytree-wrapped passed the binary check. - /nix/store/ldddgcpac0rvfnn1f06dgscaqws2rv9k-cherrytree-0.38.5/bin/cherrytree passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 0.38.5 with grep in /nix/store/ldddgcpac0rvfnn1f06dgscaqws2rv9k-cherrytree-0.38.5 - directory tree listing: https://gist.github.com/21bb973739375865396284be25e432a6 - du listing: https://gist.github.com/da57acfe574b3ee8ff342306c396f8b7
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ stdenv, fetchurl, pythonPackages, gettext, sqlite }:
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cherrytree-${version}";
|
|
version = "0.38.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.giuspen.com/software/${name}.tar.xz";
|
|
sha256 = "1ja3b14vm3yd26pf82p2qlld0flqkqvgdg2g33r5dav6wfq3pz6y";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|