2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, qt4, cmake }:
|
2010-09-03 18:40:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-09 22:12:55 +00:00
|
|
|
pname = "grantlee";
|
|
|
|
version = "0.5.1";
|
2010-09-03 18:40:55 +01:00
|
|
|
|
2012-01-14 18:03:05 +00:00
|
|
|
# Upstream download server has country code firewall, so I made a mirror.
|
2010-09-03 18:40:55 +01:00
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
2021-11-09 22:12:55 +00:00
|
|
|
"http://downloads.grantlee.org/grantlee-${version}.tar.gz"
|
|
|
|
"http://www.loegria.net/grantlee/grantlee-${version}.tar.gz"
|
2010-09-03 18:40:55 +01:00
|
|
|
];
|
2018-06-18 21:48:33 +01:00
|
|
|
sha256 = "1b501xbimizmbmysl1j5zgnp48qw0r2r7lhgmxvzhzlv9jzhj60r";
|
2010-09-03 18:40:55 +01:00
|
|
|
};
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qt4 ];
|
2010-09-03 18:40:55 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Qt4 port of Django template system";
|
|
|
|
longDescription = ''
|
|
|
|
Grantlee is a plugin based String Template system written using the Qt
|
|
|
|
framework. The goals of the project are to make it easier for application
|
|
|
|
developers to separate the structure of documents from the data they
|
|
|
|
contain, opening the door for theming.
|
|
|
|
|
|
|
|
The syntax is intended to follow the syntax of the Django template system,
|
2010-09-03 19:55:36 +01:00
|
|
|
and the design of Django is reused in Grantlee.'';
|
2010-09-03 18:40:55 +01:00
|
|
|
|
2021-12-28 17:11:18 +00:00
|
|
|
homepage = "https://github.com/steveire/grantlee";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl21;
|
2010-09-04 20:53:32 +01:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-09-03 18:40:55 +01:00
|
|
|
};
|
|
|
|
}
|