at 15.09-beta 32 lines 1.1 kB view raw
1{ stdenv, fetchurl, qt4, cmake }: 2 3stdenv.mkDerivation rec { 4 name = "grantlee-0.4.0"; 5 6# Upstream download server has country code firewall, so I made a mirror. 7 src = fetchurl { 8 urls = [ 9 "http://downloads.grantlee.org/${name}.tar.gz" 10 "http://www.loegria.net/grantlee/${name}.tar.gz" 11 ]; 12 sha256 = "0gqdckxx45qmyixyz5d7ipcqq2dw26r71m2fpsrlnh4j2c9di8hk"; 13 }; 14 15 buildInputs = [ cmake qt4 ]; 16 17 meta = { 18 description = "Qt4 port of Django template system"; 19 longDescription = '' 20 Grantlee is a plugin based String Template system written using the Qt 21 framework. The goals of the project are to make it easier for application 22 developers to separate the structure of documents from the data they 23 contain, opening the door for theming. 24 25 The syntax is intended to follow the syntax of the Django template system, 26 and the design of Django is reused in Grantlee.''; 27 28 homepage = http://gitorious.org/grantlee; 29 maintainers = [ stdenv.lib.maintainers.urkud ]; 30 inherit (qt4.meta) platforms; 31 }; 32}