1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/eloquent/tf2-msgs/default.nix

25 lines
866 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-eloquent-tf2-msgs";
version = "0.12.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/eloquent/tf2_msgs/0.12.5-1.tar.gz";
name = "0.12.5-1.tar.gz";
sha256 = "526952f7d6ce253cb55a04eeb6910b059f99abc9d73d689a9d787588b8d383c8";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ action-msgs builtin-interfaces geometry-msgs rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''tf2_msgs'';
license = with lib.licenses; [ bsdOriginal ];
};
}