2022-02-27 17:43:51 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
2024-05-21 21:50:29 +00:00
|
|
|
, updateAutotoolsGnuConfigScriptsHook
|
2022-02-27 17:43:51 +00:00
|
|
|
# for passthru.tests
|
|
|
|
, python3
|
|
|
|
, perlPackages
|
|
|
|
, haskellPackages
|
|
|
|
, luaPackages
|
|
|
|
, ocamlPackages
|
2024-02-09 13:11:12 +00:00
|
|
|
, testers
|
2022-02-27 17:43:51 +00:00
|
|
|
}:
|
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.
|
|
|
|
|
2024-02-23 05:29:02 +00:00
|
|
|
let
|
2024-11-07 07:02:24 +00:00
|
|
|
version = "2.6.4";
|
2024-02-23 05:29:02 +00:00
|
|
|
tag = "R_${lib.replaceStrings ["."] ["_"] version}";
|
|
|
|
in
|
2024-02-09 13:11:12 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2021-06-12 19:17:51 +00:00
|
|
|
pname = "expat";
|
2024-02-23 05:29:02 +00:00
|
|
|
inherit version;
|
2012-09-26 19:04:27 +00:00
|
|
|
|
2003-11-05 12:17:48 +00:00
|
|
|
src = fetchurl {
|
2024-02-23 05:29:02 +00:00
|
|
|
url = with finalAttrs; "https://github.com/libexpat/libexpat/releases/download/${tag}/${pname}-${version}.tar.xz";
|
2024-11-07 07:02:24 +00:00
|
|
|
hash = "sha256-ppVina4EcFWzfVCg/0d20dRdCkyELPTM7hWEQfVf9+4=";
|
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;
|
2024-05-21 21:50:29 +00:00
|
|
|
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ];
|
2022-05-21 16:58:22 +00:00
|
|
|
|
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.hostPlatform.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 = ''
|
2023-11-06 02:44:32 +00:00
|
|
|
patchShebangs ./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 = ''
|
2024-02-09 13:11:12 +00:00
|
|
|
substituteInPlace $dev/lib/cmake/expat-${finalAttrs.version}/expat-noconfig.cmake \
|
2021-07-02 13:44:25 +00:00
|
|
|
--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;
|
2024-02-09 13:11:12 +00:00
|
|
|
pkg-config = testers.hasPkgConfigModules {
|
|
|
|
package = finalAttrs.finalPackage;
|
|
|
|
};
|
2022-02-27 17:43:51 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2024-02-07 18:32:26 +00:00
|
|
|
changelog = "https://github.com/libexpat/libexpat/blob/${tag}/expat/Changes";
|
2021-06-12 19:17:51 +00:00
|
|
|
homepage = "https://libexpat.github.io/";
|
2011-02-11 13:55:30 +00:00
|
|
|
description = "Stream-oriented XML parser library written in C";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "xmlwf";
|
2014-08-30 05:28:26 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit; # expat version
|
2024-02-09 13:11:12 +00:00
|
|
|
pkgConfigModules = [ "expat" ];
|
2011-02-11 13:55:30 +00:00
|
|
|
};
|
2024-02-09 13:11:12 +00:00
|
|
|
})
|