aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/grantlee
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 17:29:30 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:35 -0600
commit664a64ef132ccd7781d5a16f1d8d551ea077e940 (patch)
tree327c50bfdd443a6d16a6612a17d2bf3b4c16a086 /pkgs/development/libraries/grantlee
parent758901397b3c6ce971d1b8b3e2c5b8d7d7137238 (diff)
grantlee: Qt 5 infrastructure update
Diffstat (limited to 'pkgs/development/libraries/grantlee')
-rw-r--r--pkgs/development/libraries/grantlee/5.x-old.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/libraries/grantlee/5.x-old.nix b/pkgs/development/libraries/grantlee/5.x-old.nix
deleted file mode 100644
index 4127280fb9a2..000000000000
--- a/pkgs/development/libraries/grantlee/5.x-old.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ 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;
- };
-}