504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
34 lines
753 B
Nix
34 lines
753 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, curl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xerces-c";
|
|
version = "3.2.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/xerces/c/3/sources/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-VFz8zmxOdVIHvR8n4xkkHlDjfAwnJQ8RzaEWAY8e8PU=";
|
|
};
|
|
|
|
buildInputs = [
|
|
curl
|
|
];
|
|
|
|
configureFlags = [
|
|
# Disable SSE2 extensions on platforms for which they are not enabled by default
|
|
"--disable-sse2"
|
|
"--enable-netaccessor-curl"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://xerces.apache.org/xerces-c/";
|
|
description = "Validating XML parser written in a portable subset of C++";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
};
|
|
}
|