depot/third_party/nixpkgs/pkgs/development/tools/xqilla/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
611 B
Nix

{ stdenv, fetchurl, xercesc }:
stdenv.mkDerivation rec {
pname = "xqilla";
version = "2.3.4";
src = fetchurl {
url = "mirror://sourceforge/xqilla/XQilla-${version}.tar.gz";
sha256 = "0m9z7diw7pdyb4qycbqyr2x55s13v8310xsi7yz0inpw27q4vzdd";
};
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;
};
}