7 stdenv.mkDerivation rec {
12 url = "mirror://apache/xerces/c/3/sources/${pname}-${version}.tar.gz";
13 sha256 = "sha256-VFz8zmxOdVIHvR8n4xkkHlDjfAwnJQ8RzaEWAY8e8PU=";
21 # Disable SSE2 extensions on platforms for which they are not enabled by default
23 "--enable-netaccessor-curl"
26 enableParallelBuilding = true;
29 homepage = "https://xerces.apache.org/xerces-c/";
30 description = "Validating XML parser written in a portable subset of C++";
31 license = lib.licenses.asl20;
32 platforms = lib.platforms.linux ++ lib.platforms.darwin;