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