2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, tinyxml-2 }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tinyxml2-vendor";
|
|
|
|
version = "0.6.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/tinyxml2_vendor-release/archive/release/dashing/tinyxml2_vendor/0.6.1-1.tar.gz";
|
|
|
|
name = "0.6.1-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "8a562096dafae9ea3551eb8340b5248db5130ffdfe8fd458f80bfbeb8ec04e82";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
propagatedBuildInputs = [ tinyxml-2 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Wrapper around tinyxml2, providing nothing but a dependency on tinyxml2, on some systems.
|
|
|
|
On others, it provides a fixed CMake module or even an ExternalProject build of tinyxml2.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|