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/jazzy/create3-examples-msgs/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-jazzy-create3-examples-msgs";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/create3_examples-release/archive/release/jazzy/create3_examples_msgs/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "0ef99687f0220f5c187f3311e13100e87df258a273f6893e2a6dc1a2de7b24f8";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ action-msgs builtin-interfaces rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "Package containing action, message and service definitions used by the iRobot(R) Create(R) 3 examples";
license = with lib.licenses; [ bsdOriginal ];
};
}