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