mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
24 lines
885 B
Nix
24 lines
885 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, rmw-implementation-cmake, launch-ros, rcutils, ets-msgs, rclcpp, std-msgs, rosidl-default-runtime, rmw }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-crystal-ets-cpp-client";
|
||
|
version = "0.1.2-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/brunodmt/ets_ros2-release/archive/release/crystal/ets_cpp_client/0.1.2-2.tar.gz;
|
||
|
sha256 = "fd8f72849064578c712fd7d106067af72c38aadfeb89fea2f19e90244df93b44";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ rmw-implementation-cmake ets-msgs rclcpp std-msgs rcutils rmw ];
|
||
|
propagatedBuildInputs = [ launch-ros rcutils ets-msgs rclcpp std-msgs rosidl-default-runtime rmw ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''ETS2/ATS sample client'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|