mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21b6635932
Disable SSE2 extensions on platforms for which they are not enabled by default. This does not disable sse2 extensions on systems for which they are enabled by default, such as amd64.
23 lines
683 B
Nix
23 lines
683 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xerces-c-${version}";
|
|
version = "3.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://apache/xerces/c/3/sources/${name}.tar.gz";
|
|
sha256 = "04q4c460wqzyzmprjm22igcm1d52xr20ajxnhr33nv95mbw92qfx";
|
|
};
|
|
|
|
# Disable SSE2 extensions on platforms for which they are not enabled by default
|
|
configureFlags = [ "--disable-sse2" ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = https://xerces.apache.org/xerces-c/;
|
|
description = "Validating XML parser written in a portable subset of C++";
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|