1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/tinyxml-vendor/default.nix

25 lines
717 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, tinyxml }:
buildRosPackage {
pname = "ros-foxy-tinyxml-vendor";
version = "0.8.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/tinyxml_vendor-release/archive/release/foxy/tinyxml_vendor/0.8.2-1.tar.gz";
name = "0.8.2-1.tar.gz";
sha256 = "01d4cb774b1cbac4cd414d9ca3c11f9b8bc6848902990f25689f9a62f05958c6";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ tinyxml ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''CMake shim over the tinxml library.'';
license = with lib.licenses; [ asl20 ];
};
}