Author: urkud
Date: Fri Sep 3 17:40:55 2010
New Revision: 23625
URL: https://svn.nixos.org/websvn/nix/?rev=23625&sc=1
Log:
Add grantlee
Added:
nixpkgs/trunk/pkgs/development/libraries/grantlee/
nixpkgs/trunk/pkgs/development/libraries/grantlee/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/development/libraries/grantlee/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/libraries/grantlee/default.nix Fri Sep
3 17:40:55 2010 (r23625)
@@ -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;
+ };
+}
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Fri Sep 3 17:40:49
2010 (r23624)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Fri Sep 3 17:40:55
2010 (r23625)
@@ -2947,6 +2947,8 @@
gpgme = callPackage ../development/libraries/gpgme { };
+ grantlee = callPackage ../development/libraries/grantlee { };
+
gsasl = callPackage ../development/libraries/gsasl { };
gsl = callPackage ../development/libraries/gsl { };
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits