2020-06-12 18:02:43 -04:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-shape-msgs";
|
2022-01-07 13:12:33 +00:00
|
|
|
version = "2.0.5-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-01-07 13:12:33 +00:00
|
|
|
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/foxy/shape_msgs/2.0.5-1.tar.gz";
|
|
|
|
name = "2.0.5-1.tar.gz";
|
|
|
|
sha256 = "ac6bb4f5e67d9d8784978faf4b1a9f47a0e2020ea22aec32940d6b64a0c68eb1";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A package containing some message definitions which describe geometric shapes.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|