2010-09-03 18:40:55 +01:00
|
|
|
{ stdenv, fetchurl, qt4, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-18 21:48:33 +01:00
|
|
|
name = "grantlee-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 = [
|
|
|
|
"http://downloads.grantlee.org/${name}.tar.gz"
|
|
|
|
"http://www.loegria.net/grantlee/${name}.tar.gz"
|
|
|
|
];
|
2018-06-18 21:48:33 +01:00
|
|
|
sha256 = "1b501xbimizmbmysl1j5zgnp48qw0r2r7lhgmxvzhzlv9jzhj60r";
|
2010-09-03 18:40:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake qt4 ];
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://gitorious.org/grantlee";
|
2018-10-12 20:40:32 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
2010-09-04 20:53:32 +01:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-09-03 18:40:55 +01:00
|
|
|
};
|
|
|
|
}
|