1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/dashing/console-bridge-vendor/default.nix
2019-12-09 23:36:28 -05:00

25 lines
907 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, console-bridge }:
buildRosPackage {
pname = "ros-dashing-console-bridge-vendor";
version = "1.2.0-r1";
src = fetchurl {
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";
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 ];
};
}