about summary refs log tree commit diff
path: root/pkgs/development/libraries/grantlee
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2010-09-03 17:40:55 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2010-09-03 17:40:55 +0000
commitaa7164d7defa1851e0c5cf8ff90c816dd20807a2 (patch)
tree5ae8fa3cfe334dbf4565f6593ffde0e0cb3bbf2d /pkgs/development/libraries/grantlee
parent83dac52cc986ad323fbf6af5bf77ea717d1f7251 (diff)
Add grantlee
svn path=/nixpkgs/trunk/; revision=23625
Diffstat (limited to 'pkgs/development/libraries/grantlee')
-rw-r--r--pkgs/development/libraries/grantlee/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/libraries/grantlee/default.nix b/pkgs/development/libraries/grantlee/default.nix
new file mode 100644
index 0000000000000..577e8d15667ce
--- /dev/null
+++ b/pkgs/development/libraries/grantlee/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, qt4, cmake }:
+
+stdenv.mkDerivation rec {
+  name = "grantlee-0.1.5";
+
+# Upstream download server has country code firewall, so I made a mirror. The
+# URL of the mirror may change in the future, so don't publish it yet.
+  src = fetchurl {
+    urls = [
+      "http://downloads.grantlee.org/${name}.tar.gz"
+      "http://www.loegria.net/grantlee/${name}.tar.gz"
+    ];
+    sha256 = "040slr4kpi62vwkwnsxhvnq2m15wqn40knh69ci6kskmb3i8iv1a";
+  };
+
+  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,
+      and the design of Django is reused in Grantlee.''
+
+    homepage = http://gitorious.org/grantlee;
+  };
+}