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/crystal/visualization-msgs/default.nix

26 lines
1 KiB
Nix
Raw Normal View History

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