aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/tools/xqilla/default.nix
blob: 7d8029ee1f14f1cee63bda274450806727e11577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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;
  };
}