2024-08-02 13:27:09 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-08-02 13:27:09 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, can-msgs, dataspeed-can-msg-filters, dataspeed-can-usb, ds-dbw-msgs, rclcpp, rclcpp-components, sensor-msgs, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ds-dbw-can";
|
2025-04-04 13:36:01 +00:00
|
|
|
version = "2.3.3-r1";
|
2024-08-02 13:27:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-04 13:36:01 +00:00
|
|
|
url = "https://github.com/DataspeedInc-release/dbw_ros-release/archive/release/jazzy/ds_dbw_can/2.3.3-1.tar.gz";
|
|
|
|
name = "2.3.3-1.tar.gz";
|
|
|
|
sha256 = "1bc6d23005ecee88ebaaed5d9eb54b135af1c3b885e727d8404e27ac23aff740";
|
2024-08-02 13:27:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake dataspeed-can-msg-filters ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
|
|
propagatedBuildInputs = [ can-msgs dataspeed-can-usb ds-dbw-msgs rclcpp rclcpp-components sensor-msgs std-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Interface to the Dataspeed Inc. Drive-By-Wire kit";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|