2021-06-10 20:44:42 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
, wrapGAppsHook
|
|
|
|
, gtkmm3
|
|
|
|
, gtksourceview
|
|
|
|
, gtksourceviewmm
|
|
|
|
, gspell
|
|
|
|
, libxmlxx
|
|
|
|
, sqlite
|
|
|
|
, curl
|
|
|
|
, libuchardet
|
|
|
|
, spdlog
|
|
|
|
}:
|
2015-07-24 14:04:31 +01:00
|
|
|
|
2021-06-10 20:44:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cherrytree";
|
2021-10-29 07:35:16 +01:00
|
|
|
version = "0.99.42";
|
2020-04-05 18:33:23 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "giuspen";
|
|
|
|
repo = "cherrytree";
|
|
|
|
rev = version;
|
2021-10-29 07:35:16 +01:00
|
|
|
sha256 = "sha256-PKjl9n6J0iNdcA56CZ/nAzvgRNwqRLTHjwi3HQYWIMU=";
|
2015-01-31 01:17:00 +00:00
|
|
|
};
|
|
|
|
|
2021-06-10 20:44:42 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2015-01-31 01:17:00 +00:00
|
|
|
|
2021-06-10 20:44:42 +01:00
|
|
|
buildInputs = [
|
|
|
|
gtkmm3
|
|
|
|
gtksourceview
|
|
|
|
gtksourceviewmm
|
|
|
|
gspell
|
|
|
|
libxmlxx
|
|
|
|
sqlite
|
|
|
|
curl
|
|
|
|
libuchardet
|
|
|
|
spdlog
|
|
|
|
];
|
2015-01-31 01:17:00 +00:00
|
|
|
|
2019-10-29 21:38:42 +00:00
|
|
|
meta = with lib; {
|
2015-07-24 14:04:31 +01:00
|
|
|
description = "An hierarchical note taking application";
|
|
|
|
longDescription = ''
|
2020-04-05 18:33:23 +01:00
|
|
|
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 21:59:29 +01:00
|
|
|
'';
|
2021-06-10 20:44:42 +01:00
|
|
|
homepage = "https://www.giuspen.com/cherrytree";
|
|
|
|
changelog = "https://raw.githubusercontent.com/giuspen/cherrytree/${version}/changelog.txt";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-04-05 18:33:23 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-07-05 21:59:29 +01:00
|
|
|
};
|
2015-01-31 01:17:00 +00:00
|
|
|
}
|