nixpkgs/pkgs/development/libraries/tinyxml/2.6.2.nix

77 lines
2.1 KiB
Nix
Raw Normal View History

2012-12-31 10:13:55 +00:00
{ stdenv, fetchurl, unzip }:
let
version = "2.6.2";
SHLIB_EXT = if stdenv.isDarwin then "dylib" else "so";
2012-12-31 10:13:55 +00:00
in stdenv.mkDerivation {
name = "tinyxml-${version}";
2012-12-31 10:13:55 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/tinyxml/tinyxml/${version}/tinyxml_2_6_2.zip";
sha256 = "04nmw6im2d1xp12yir8va93xns5iz816pwi25n9cql3g3i8bjsxc";
};
2012-12-31 10:13:55 +00:00
patches = [
# add pkgconfig file
./2.6.2-add-pkgconfig.patch
2012-12-31 10:13:55 +00:00
# http://sourceforge.net/tracker/index.php?func=detail&aid=3031828&group_id=13559&atid=313559
./2.6.2-entity.patch
# Use CC, CXX, and LD from environment
./2.6.2-cxx.patch
2012-12-31 10:13:55 +00:00
];
preConfigure = "export LD=${if stdenv.isDarwin then "clang++" else "g++"}";
NIX_CFLAGS_COMPILE =
stdenv.lib.optional stdenv.isDarwin "-mmacosx-version-min=10.9";
2012-12-31 10:13:55 +00:00
buildInputs = [ unzip ];
buildPhase = ''
2013-03-12 00:35:16 +00:00
# use STL (xbmc requires it)
sed '1i#define TIXML_USE_STL 1' -i tinyxml.h
sed '1i#define TIXML_USE_STL 1' -i xmltest.cpp
2012-12-31 10:13:55 +00:00
# build xmltest
make
2012-12-31 10:13:55 +00:00
# build the lib as a shared library
''${CXX} -Wall -O2 -shared -fpic tinyxml.cpp \
2012-12-31 10:13:55 +00:00
tinyxmlerror.cpp tinyxmlparser.cpp \
tinystr.cpp -o libtinyxml.${SHLIB_EXT}
2012-12-31 10:13:55 +00:00
'';
2012-12-31 10:13:55 +00:00
doCheck = true;
checkPhase = ''
./xmltest
result=$?
if [[ $result != 0 ]] ; then
exit $result
fi
'';
2012-12-31 10:13:55 +00:00
installPhase = ''
mkdir -pv $out/include/
mkdir -pv $out/lib/pkgconfig/
mkdir -pv $out/share/doc/tinyxml/
cp -v libtinyxml.${SHLIB_EXT} $out/lib/
2012-12-31 10:13:55 +00:00
cp -v *.h $out/include/
2012-12-31 10:13:55 +00:00
substituteInPlace tinyxml.pc --replace "@out@" "$out"
substituteInPlace tinyxml.pc --replace "@version@" "${version}"
cp -v tinyxml.pc $out/lib/pkgconfig/
2012-12-31 10:13:55 +00:00
cp -v docs/* $out/share/doc/tinyxml/
'' + stdenv.lib.optionalString stdenv.isDarwin ''
install_name_tool -id $out/lib/libtinyxml.dylib $out/lib/libtinyxml.dylib
2012-12-31 10:13:55 +00:00
'';
2012-12-31 10:13:55 +00:00
meta = {
description = "Simple, small, C++ XML parser that can be easily integrating into other programs";
2012-12-31 10:13:55 +00:00
homepage = "http://www.grinninglizard.com/tinyxml/index.html";
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
2012-12-31 10:13:55 +00:00
};
}