summary refs log tree commit diff
path: root/pkgs/development/libraries/grantlee
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-09-27 10:23:10 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-09-27 15:09:42 -0500
commit569316e4fc967da1ebd7d22f70552e0e5734534a (patch)
tree199ba6dd177aafddce01e745b27a84554739a74e /pkgs/development/libraries/grantlee
parentdfbcab342a7c320c1f204d7309be4b474c9f5a17 (diff)
downloadnixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.tar
nixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.tar.gz
nixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.tar.bz2
nixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.tar.lz
nixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.tar.xz
nixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.tar.zst
nixpkgs-569316e4fc967da1ebd7d22f70552e0e5734534a.zip
grantlee: build with Qt 5.5
Diffstat (limited to 'pkgs/development/libraries/grantlee')
-rw-r--r--pkgs/development/libraries/grantlee/5.x-old.nix32
-rw-r--r--pkgs/development/libraries/grantlee/5.x.nix5
2 files changed, 35 insertions, 2 deletions
diff --git a/pkgs/development/libraries/grantlee/5.x-old.nix b/pkgs/development/libraries/grantlee/5.x-old.nix
new file mode 100644
index 00000000000..4127280fb9a
--- /dev/null
+++ b/pkgs/development/libraries/grantlee/5.x-old.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;
+  };
+}
diff --git a/pkgs/development/libraries/grantlee/5.x.nix b/pkgs/development/libraries/grantlee/5.x.nix
index 4127280fb9a..3323cbaeb4c 100644
--- a/pkgs/development/libraries/grantlee/5.x.nix
+++ b/pkgs/development/libraries/grantlee/5.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, cmake }:
+{ stdenv, fetchurl, qtbase, qtscript, cmake }:
 
 stdenv.mkDerivation rec {
   name = "grantlee-5.0.0";
@@ -12,7 +12,8 @@ stdenv.mkDerivation rec {
     sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa";
   };
 
-  buildInputs = [ cmake qt5.base qt5.script ];
+  buildInputs = [ qtbase qtscript ];
+  nativeBuildInputs = [ cmake ];
 
   meta = {
     description = "Qt5 port of Django template system";