2010-09-03 18:40:55 +01:00
|
|
|
{ stdenv, fetchurl, qt4, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-04 04:58:25 +00:00
|
|
|
name = "grantlee-0.4.0";
|
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"
|
|
|
|
];
|
2013-12-04 04:58:25 +00:00
|
|
|
sha256 = "0gqdckxx45qmyixyz5d7ipcqq2dw26r71m2fpsrlnh4j2c9di8hk";
|
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
|
|
|
|
|
|
|
homepage = http://gitorious.org/grantlee;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ ];
|
2010-09-04 20:53:32 +01:00
|
|
|
inherit (qt4.meta) platforms;
|
2010-09-03 18:40:55 +01:00
|
|
|
};
|
|
|
|
}
|