2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, console-bridge }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-console-bridge-vendor";
|
|
|
|
version = "1.2.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/console_bridge_vendor-release/archive/release/dashing/console_bridge_vendor/1.2.0-1.tar.gz";
|
|
|
|
name = "1.2.0-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "6d21c708f3252482d7dffa02dbd0c2b3e94491dbe5dca0148ac190d62a787646";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
propagatedBuildInputs = [ console-bridge ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Wrapper around console_bridge, providing nothing but a dependency on console_bridge, on some systems.
|
|
|
|
On others, it provides an ExternalProject build of console_bridge.'';
|
|
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|