2022-02-27 17:43:51 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
# for passthru.tests
|
|
|
|
, python3
|
|
|
|
, perlPackages
|
|
|
|
, haskellPackages
|
|
|
|
, luaPackages
|
|
|
|
, ocamlPackages
|
|
|
|
}:
|
2011-02-11 13:55:30 +00:00
|
|
|
|
2020-06-26 20:44:45 +00:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2021-06-12 19:17:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "expat";
|
2022-11-05 12:18:49 +00:00
|
|
|
version = "2.5.0";
|
2012-09-26 19:04:27 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
src = fetchurl {
|
2021-06-12 19:17:51 +00:00
|
|
|
url = "https://github.com/libexpat/libexpat/releases/download/R_${lib.replaceStrings ["."] ["_"] version}/${pname}-${version}.tar.xz";
|
2022-11-05 12:18:49 +00:00
|
|
|
sha256 = "1gnwihpfz4x18rwd6cbrdggmfqjzwsdfh1gpmc0ph21c4gq2097g";
|
2003-11-05 16:28:26 +00:00
|
|
|
};
|
2011-02-11 13:55:30 +00:00
|
|
|
|
2022-05-21 16:58:22 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ]; # TODO: fix referrers
|
2015-10-15 11:57:38 +00:00
|
|
|
outputBin = "dev";
|
2016-01-19 08:55:31 +00:00
|
|
|
|
2022-05-14 01:13:49 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
configureFlags = lib.optional stdenv.isFreeBSD "--with-pic";
|
2015-11-26 17:33:58 +00:00
|
|
|
|
2015-10-15 11:57:38 +00:00
|
|
|
outputMan = "dev"; # tiny page for a dev tool
|
|
|
|
|
2018-01-08 07:19:47 +00:00
|
|
|
doCheck = true; # not cross;
|
2016-05-17 19:20:48 +00:00
|
|
|
|
2017-08-21 08:10:42 +00:00
|
|
|
preCheck = ''
|
2021-06-12 19:17:51 +00:00
|
|
|
patchShebangs ./configure ./run.sh ./test-driver-wrapper.sh
|
2017-08-21 08:10:42 +00:00
|
|
|
'';
|
2017-06-18 21:49:24 +00:00
|
|
|
|
2021-07-02 13:44:25 +00:00
|
|
|
# CMake files incorrectly calculate library path from dev prefix
|
|
|
|
# https://github.com/libexpat/libexpat/issues/501
|
|
|
|
postFixup = ''
|
|
|
|
substituteInPlace $dev/lib/cmake/expat-${version}/expat-noconfig.cmake \
|
|
|
|
--replace "$"'{_IMPORT_PREFIX}' $out
|
|
|
|
'';
|
|
|
|
|
2022-02-27 17:43:51 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit python3;
|
2022-03-06 00:12:20 +00:00
|
|
|
inherit (python3.pkgs) xmltodict;
|
2022-02-27 17:43:51 +00:00
|
|
|
inherit (haskellPackages) hexpat;
|
|
|
|
inherit (perlPackages) XMLSAXExpat XMLParser;
|
|
|
|
inherit (luaPackages) luaexpat;
|
|
|
|
inherit (ocamlPackages) ocaml_expat;
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-06-12 19:17:51 +00:00
|
|
|
homepage = "https://libexpat.github.io/";
|
2011-02-11 13:55:30 +00:00
|
|
|
description = "A stream-oriented XML parser library written in C";
|
2014-08-30 05:28:26 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit; # expat version
|
2011-02-11 13:55:30 +00:00
|
|
|
};
|
2003-11-05 12:17:48 +00:00
|
|
|
}
|