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

25 lines
757 B
Nix

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