nixpkgs/pkgs/development/libraries/expat/default.nix

37 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, lib }:
# 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.
stdenv.mkDerivation rec {
pname = "expat";
version = "2.4.1";
2012-09-26 20:04:27 +01:00
src = fetchurl {
url = "https://github.com/libexpat/libexpat/releases/download/R_${lib.replaceStrings ["."] ["_"] version}/${pname}-${version}.tar.xz";
sha256 = "sha256-zwMtDbqbkoY2VI4ysyei1msaq2PE9KE90TLC0dLy+2o=";
};
outputs = [ "out" "dev" ]; # TODO: fix referrers
2015-10-15 12:57:38 +01:00
outputBin = "dev";
configureFlags = lib.optional stdenv.isFreeBSD "--with-pic";
2015-10-15 12:57:38 +01:00
outputMan = "dev"; # tiny page for a dev tool
doCheck = true; # not cross;
2017-08-21 09:10:42 +01:00
preCheck = ''
patchShebangs ./configure ./run.sh ./test-driver-wrapper.sh
2017-08-21 09:10:42 +01:00
'';
meta = with lib; {
homepage = "https://libexpat.github.io/";
description = "A stream-oriented XML parser library written in C";
platforms = platforms.all;
license = licenses.mit; # expat version
};
}