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/dashing/visualization-msgs/default.nix
2020-01-17 21:21:17 -05:00

25 lines
1,011 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-dashing-visualization-msgs";
version = "0.7.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/dashing/visualization_msgs/0.7.0-1.tar.gz";
name = "0.7.0-1.tar.gz";
sha256 = "2921b317156c745bf41c6d16d3a96bd19e5c4bdb69aa93b9e05eedb88eb8792a";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''A package containing some visualization and interaction related message definitions.'';
license = with lib.licenses; [ asl20 ];
};
}