2020-07-24 13:00:10 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-24 13:00:10 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-12-11 13:16:21 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-gtest, ament-lint-auto, ament-lint-common, boost, rclcpp, std-msgs }:
|
2020-07-24 13:00:10 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-serial-driver";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "0.0.6-r4";
|
2020-07-24 13:00:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/ros-drivers-gbp/transport_drivers-release/archive/release/dashing/serial_driver/0.0.6-4.tar.gz";
|
|
|
|
name = "0.0.6-4.tar.gz";
|
|
|
|
sha256 = "f07c5fbd76a5da7d4fb36f3d6b834f3430a4cbfa2d9219faceb2be5c29931c8e";
|
2020-07-24 13:00:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
2020-12-11 13:16:21 +00:00
|
|
|
propagatedBuildInputs = [ boost rclcpp std-msgs ];
|
2020-07-24 13:00:10 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A template class and associated utilities which encapsulate basic reading from serial ports'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|