2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, qt4, cmake }:
|
2010-09-03 10:40:55 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-18 13:48:33 -07:00
|
|
|
name = "grantlee-0.5.1";
|
2010-09-03 10:40:55 -07:00
|
|
|
|
2012-01-14 10:03:05 -08:00
|
|
|
# Upstream download server has country code firewall, so I made a mirror.
|
2010-09-03 10:40:55 -07:00
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
|
|
|
"http://downloads.grantlee.org/${name}.tar.gz"
|
|
|
|
"http://www.loegria.net/grantlee/${name}.tar.gz"
|
|
|
|
];
|
2018-06-18 13:48:33 -07:00
|
|
|
sha256 = "1b501xbimizmbmysl1j5zgnp48qw0r2r7lhgmxvzhzlv9jzhj60r";
|
2010-09-03 10:40:55 -07:00
|
|
|
};
|
|
|
|
|
2020-12-30 23:48:55 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qt4 ];
|
2010-09-03 10:40:55 -07: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 11:55:36 -07:00
|
|
|
and the design of Django is reused in Grantlee.'';
|
2010-09-03 10:40:55 -07:00
|
|
|
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://gitorious.org/grantlee";
|
2021-01-21 09:00:13 -08:00
|
|
|
license = lib.licenses.lgpl21;
|
2010-09-04 12:53:32 -07:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-09-03 10:40:55 -07:00
|
|
|
};
|
|
|
|
}
|