about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/xercesc/default.nix
blob: e386851da02c3509e683b6d886f2680329eec6e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ 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;
  };
}