aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/xqilla
diff options
context:
space:
mode:
authorobadz <dav-github@odav.org>2016-04-11 13:55:57 +0100
committerobadz <dav-github@odav.org>2016-04-11 13:57:19 +0100
commite8b3532d26c15f308c4b597128da8b3b9554e932 (patch)
tree6c5337a117e16e79284d3a9ba28767e739348561 /pkgs/development/tools/xqilla
parent5e5ef22d7367b3aa453504e8819985ec2ccda8fe (diff)
xqilla: init at 2.3.3
Diffstat (limited to 'pkgs/development/tools/xqilla')
-rw-r--r--pkgs/development/tools/xqilla/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/tools/xqilla/default.nix b/pkgs/development/tools/xqilla/default.nix
new file mode 100644
index 000000000000..77bf313e83dc
--- /dev/null
+++ b/pkgs/development/tools/xqilla/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, xercesc }:
+
+stdenv.mkDerivation rec {
+ name = "xqilla-${version}";
+ version = "2.3.3";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/xqilla/XQilla-${version}.tar.gz";
+ sha256 = "1mjgcyar3qyizpnb0h9lxaj6p9yq4vj09qd8qan1bwv6z6sbjxlg";
+ };
+
+ configureFlags = [ "--with-xerces=${xercesc}" ];
+
+ meta = with stdenv.lib; {
+ description = "XQilla is an XQuery and XPath 2 library and command line utility written in C++, implemented on top of the Xerces-C library.";
+ license = licenses.asl20 ;
+ maintainers = with maintainers; [ obadz ];
+ platforms = platforms.all;
+ };
+}