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/iron/tinyxml-vendor/default.nix

26 lines
748 B
Nix
Raw Normal View History

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