mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
1,011 B
Nix
25 lines
1,011 B
Nix
![]() |
|
||
|
# 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";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|