2020-10-25 22:17:24 +01:00
|
|
|
{ stdenv, fetchurl, lib }:
|
2011-02-11 14:55:30 +01:00
|
|
|
|
2020-06-26 22:44:45 +02: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 21:17:51 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "expat";
|
|
|
|
version = "2.4.1";
|
2012-09-26 21:04:27 +02:00
|
|
|
|
2003-11-05 13:17:48 +01:00
|
|
|
src = fetchurl {
|
2021-06-12 21:17:51 +02:00
|
|
|
url = "https://github.com/libexpat/libexpat/releases/download/R_${lib.replaceStrings ["."] ["_"] version}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-zwMtDbqbkoY2VI4ysyei1msaq2PE9KE90TLC0dLy+2o=";
|
2003-11-05 17:28:26 +01:00
|
|
|
};
|
2011-02-11 14:55:30 +01:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" ]; # TODO: fix referrers
|
2015-10-15 13:57:38 +02:00
|
|
|
outputBin = "dev";
|
2016-01-19 09:55:31 +01:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
configureFlags = lib.optional stdenv.isFreeBSD "--with-pic";
|
2015-11-26 18:33:58 +01:00
|
|
|
|
2015-10-15 13:57:38 +02:00
|
|
|
outputMan = "dev"; # tiny page for a dev tool
|
|
|
|
|
2018-01-08 08:19:47 +01:00
|
|
|
doCheck = true; # not cross;
|
2016-05-17 21:20:48 +02:00
|
|
|
|
2017-08-21 10:10:42 +02:00
|
|
|
preCheck = ''
|
2021-06-12 21:17:51 +02:00
|
|
|
patchShebangs ./configure ./run.sh ./test-driver-wrapper.sh
|
2017-08-21 10:10:42 +02:00
|
|
|
'';
|
2017-06-18 23:49:24 +02:00
|
|
|
|
2021-07-02 15:44:25 +02: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
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2021-06-12 21:17:51 +02:00
|
|
|
homepage = "https://libexpat.github.io/";
|
2011-02-11 14:55:30 +01:00
|
|
|
description = "A stream-oriented XML parser library written in C";
|
2014-08-30 07:28:26 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit; # expat version
|
2011-02-11 14:55:30 +01:00
|
|
|
};
|
2003-11-05 13:17:48 +01:00
|
|
|
}
|