2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl, xercesc }:
|
2016-04-11 05:55:57 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xqilla";
|
2018-05-16 22:36:53 -07:00
|
|
|
version = "2.3.4";
|
2016-04-11 05:55:57 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xqilla/XQilla-${version}.tar.gz";
|
2018-05-16 22:36:53 -07:00
|
|
|
sha256 = "0m9z7diw7pdyb4qycbqyr2x55s13v8310xsi7yz0inpw27q4vzdd";
|
2016-04-11 05:55:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--with-xerces=${xercesc}" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-10-25 21:08:40 -07:00
|
|
|
description = "An XQuery and XPath 2 library and command line utility written in C++, implemented on top of the Xerces-C library";
|
2016-04-11 05:55:57 -07:00
|
|
|
license = licenses.asl20 ;
|
|
|
|
maintainers = with maintainers; [ obadz ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|