2023-12-10 22:39:15 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, xercesc }:
|
2016-04-11 12:55:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "xqilla";
|
2018-05-17 05:36:53 +00:00
|
|
|
version = "2.3.4";
|
2016-04-11 12:55:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xqilla/XQilla-${version}.tar.gz";
|
2018-05-17 05:36:53 +00:00
|
|
|
sha256 = "0m9z7diw7pdyb4qycbqyr2x55s13v8310xsi7yz0inpw27q4vzdd";
|
2016-04-11 12:55:57 +00:00
|
|
|
};
|
|
|
|
|
2023-12-10 22:39:15 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "xqilla-gcc11.patch";
|
|
|
|
url = "https://git.pld-linux.org/gitweb.cgi?p=packages/xqilla.git;a=blob_plain;f=xqilla-gcc11.patch;h=c9e28be64097040348f710cb27be5f7dad001112;hb=4efe07397c6fb426a65b2eec6999d3c7e683848a";
|
|
|
|
hash = "sha256-enMEF3U+PsbwOQ5SwlRVWc/FpyLS3aK6JgUgOp3ZbiA=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-04-11 12:55:57 +00:00
|
|
|
configureFlags = [ "--with-xerces=${xercesc}" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-26 04:08:40 +00: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 12:55:57 +00:00
|
|
|
license = licenses.asl20 ;
|
|
|
|
maintainers = with maintainers; [ obadz ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|