2019-09-04 17:11:04 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, tinyxml }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tinyxml-vendor";
|
|
|
|
version = "0.7.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/tinyxml_vendor-release/archive/release/dashing/tinyxml_vendor/0.7.0-1.tar.gz";
|
|
|
|
name = "0.7.0-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "11046b54af6b6cc0fa2a68989bc8577a73bed313ff501451e8fa98f03f56b854";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
propagatedBuildInputs = [ tinyxml ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''CMake shim over the tinxml library.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|