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

46 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, cmake, check, validatePkgConfig, shared ? false }:
2015-09-08 12:52:44 +01:00
stdenv.mkDerivation rec {
pname = "pugixml";
2020-12-08 03:52:19 +00:00
version = "1.11.1";
2015-09-08 12:52:44 +01:00
2019-03-02 11:07:52 +00:00
src = fetchFromGitHub {
owner = "zeux";
repo = "pugixml";
rev = "v${version}";
2020-12-08 03:52:19 +00:00
sha256 = "0iwn627wynrqrwb2ddm38p6y6cpgcavgbkrrxwxa0d26m9v2avpr";
2015-09-08 12:52:44 +01:00
};
outputs = if shared then [ "out" "dev" ] else [ "out" ];
nativeBuildInputs = [ cmake validatePkgConfig ];
cmakeFlags = [
"-DBUILD_TESTS=ON"
"-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"}"
];
checkInputs = [ check ];
2015-09-08 12:52:44 +01:00
# Hack to be able to run the test, broken because we use
# CMAKE_SKIP_BUILD_RPATH to avoid cmake resetting rpath on install
preCheck = if stdenv.isDarwin then ''
export DYLD_LIBRARY_PATH="$(pwd)''${DYLD_LIBRARY_PATH:+:}$DYLD_LIBRARY_PATH"
'' else ''
export LD_LIBRARY_PATH="$(pwd)''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
'';
2015-09-08 12:52:44 +01:00
preConfigure = ''
# Enable long long support (required for filezilla)
2016-12-11 20:15:14 +00:00
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' src/pugiconfig.hpp
2015-09-08 12:52:44 +01:00
'';
meta = with lib; {
2015-09-08 12:52:44 +01:00
description = "Light-weight, simple and fast XML parser for C++ with XPath support";
homepage = "https://pugixml.org";
2015-09-08 12:52:44 +01:00
license = licenses.mit;
maintainers = with maintainers; [ pSub ];
2016-11-21 18:39:12 +00:00
platforms = platforms.unix;
2015-09-08 12:52:44 +01:00
};
}