summary refs log tree commit diff
path: root/pkgs/development/libraries/grantlee
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-05-12 08:51:55 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-05-12 08:51:55 -0500
commitdef321e81155c7055aa05806ac6802dda042de25 (patch)
tree595c0c1aeacabd7b62d221a6ff5731ec934321f5 /pkgs/development/libraries/grantlee
parent1ba5ef6b6a052dd83d4b1666f424b134810a42e3 (diff)
downloadnixpkgs-def321e81155c7055aa05806ac6802dda042de25.tar
nixpkgs-def321e81155c7055aa05806ac6802dda042de25.tar.gz
nixpkgs-def321e81155c7055aa05806ac6802dda042de25.tar.bz2
nixpkgs-def321e81155c7055aa05806ac6802dda042de25.tar.lz
nixpkgs-def321e81155c7055aa05806ac6802dda042de25.tar.xz
nixpkgs-def321e81155c7055aa05806ac6802dda042de25.tar.zst
nixpkgs-def321e81155c7055aa05806ac6802dda042de25.zip
add grantlee-5.0.0
Diffstat (limited to 'pkgs/development/libraries/grantlee')
-rw-r--r--pkgs/development/libraries/grantlee/5.x.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/libraries/grantlee/5.x.nix b/pkgs/development/libraries/grantlee/5.x.nix
new file mode 100644
index 00000000000..4127280fb9a
--- /dev/null
+++ b/pkgs/development/libraries/grantlee/5.x.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, qt5, cmake }:
+
+stdenv.mkDerivation rec {
+  name = "grantlee-5.0.0";
+
+# Upstream download server has country code firewall, so I made a mirror.
+  src = fetchurl {
+    urls = [
+      "http://downloads.grantlee.org/${name}.tar.gz"
+      "http://www.loegria.net/grantlee/${name}.tar.gz"
+    ];
+    sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa";
+  };
+
+  buildInputs = [ cmake qt5.base qt5.script ];
+
+  meta = {
+    description = "Qt5 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;
+    maintainers = [ stdenv.lib.maintainers.urkud ];
+    inherit (qt5.base.meta) platforms;
+  };
+}