grantlee 0.5.1 -> 5.3.1 https://github.com/steveire/grantlee/releases attrpath: grantlee Checking auto update branch... No auto update branch exists Old version 0.5.1" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, qtbase, cmake, wrapQtAppsHook }: stdenv.mkDerivation rec { pname = "grantlee"; version = "5.2.0"; src = fetchFromGitHub { owner = "steveire"; repo = pname; rev = "v${version}"; hash = "sha256-mAbgzdBdIW1wOTQNBePQuyTgkKdpn1c+zR3H7mXHvgk="; }; nativeBuildInputs = [ cmake wrapQtAppsHook ]; buildInputs = [ qtbase ]; meta = { description = "Libraries for text templating with Qt"; longDescription = '' Grantlee is a set of Free Software libraries written using the Qt framework. Currently two libraries are shipped with Grantlee: Grantlee Templates and Grantlee TextDocument. The goal of Grantlee Templates is to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming and advanced generation of other text such as code. The syntax uses the syntax of the Django template system, and the core design of Django is reused in Grantlee. ''; homepage = "https://github.com/steveire/grantlee"; license = lib.licenses.lgpl21Plus; }; }