cherrytree 1.0.4 -> 1.1.1 https://repology.org/project/cherrytree/versions attrpath: cherrytree Checking auto update branch... No auto update branch exists Old version 1.0.4" not present in master derivation file with contents: { stdenv , lib , fetchFromGitHub , cmake , pkg-config , python3 , wrapGAppsHook , gtkmm3 , gtksourceview , gtksourceviewmm , gspell , libxmlxx , sqlite , curl , libuchardet , spdlog , fribidi , vte }: stdenv.mkDerivation rec { pname = "cherrytree"; version = "1.1.0"; src = fetchFromGitHub { owner = "giuspen"; repo = "cherrytree"; rev = "refs/tags/v${version}"; hash = "sha256-YoHaWc/olJrbV1A4hqDgYOLVlpHBrgI0x2TFr9oeqh4="; }; nativeBuildInputs = [ cmake pkg-config python3 wrapGAppsHook ]; buildInputs = [ gtkmm3 gtksourceview gtksourceviewmm gspell libxmlxx sqlite curl libuchardet spdlog fribidi vte ]; meta = with lib; { description = "An hierarchical note taking application"; mainProgram = "cherrytree"; 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 = "https://www.giuspen.com/cherrytree"; changelog = "https://raw.githubusercontent.com/giuspen/cherrytree/${version}/changelog.txt"; license = licenses.gpl3Plus; maintainers = with maintainers; [ ]; platforms = platforms.unix; }; }