nixpkgs/pkgs/development/libraries/grantlee/default.nix
ajs124 cdb4ece558
grantlee: 0.5.1 -> 5.2.0
qt4 -> qt5

(cherry picked from commit 93894a8ec961d6ee31c6d7b5cac24541341e16b2)
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2023-08-08 21:25:21 +02:00

29 lines
1.1 KiB
Nix

{ 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;
};
}