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

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