xqilla: init at 2.3.3

This commit is contained in:
obadz 2016-04-11 13:55:57 +01:00
parent 5e5ef22d73
commit e8b3532d26
2 changed files with 22 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -10019,6 +10019,8 @@ in
zookeeper_mt = callPackage ../development/libraries/zookeeper_mt { };
xqilla = callPackage ../development/tools/xqilla { };
xquartz = callPackage ../servers/x11/xquartz { };
quartz-wm = callPackage ../servers/x11/quartz-wm {
stdenv = clangStdenv;