2016-04-11 13:55:57 +01:00
|
|
|
{ stdenv, fetchurl, xercesc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xqilla-${version}";
|
2018-05-17 06:36:53 +01:00
|
|
|
version = "2.3.4";
|
2016-04-11 13:55:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xqilla/XQilla-${version}.tar.gz";
|
2018-05-17 06:36:53 +01:00
|
|
|
sha256 = "0m9z7diw7pdyb4qycbqyr2x55s13v8310xsi7yz0inpw27q4vzdd";
|
2016-04-11 13:55:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|