xqilla: init at 2.3.3
This commit is contained in:
parent
5e5ef22d73
commit
e8b3532d26
20
pkgs/development/tools/xqilla/default.nix
Normal file
20
pkgs/development/tools/xqilla/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl, xercesc }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "xqilla-${version}";
|
||||||
|
version = "2.3.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/xqilla/XQilla-${version}.tar.gz";
|
||||||
|
sha256 = "1mjgcyar3qyizpnb0h9lxaj6p9yq4vj09qd8qan1bwv6z6sbjxlg";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -10019,6 +10019,8 @@ in
|
|||||||
|
|
||||||
zookeeper_mt = callPackage ../development/libraries/zookeeper_mt { };
|
zookeeper_mt = callPackage ../development/libraries/zookeeper_mt { };
|
||||||
|
|
||||||
|
xqilla = callPackage ../development/tools/xqilla { };
|
||||||
|
|
||||||
xquartz = callPackage ../servers/x11/xquartz { };
|
xquartz = callPackage ../servers/x11/xquartz { };
|
||||||
quartz-wm = callPackage ../servers/x11/quartz-wm {
|
quartz-wm = callPackage ../servers/x11/quartz-wm {
|
||||||
stdenv = clangStdenv;
|
stdenv = clangStdenv;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user