mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 09:52:22 +03:00
24 lines
811 B
Nix
24 lines
811 B
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, pybind11-vendor, rclpy, rmf-fleet-adapter }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-rmf-fleet-adapter-python";
|
|
version = "1.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rmf_ros2-release/archive/release/foxy/rmf_fleet_adapter_python/1.4.0-1.tar.gz";
|
|
name = "1.4.0-1.tar.gz";
|
|
sha256 = "d993f63840b413c37a9d804d6343493a8975491cbbcd5403d7d6217cf80ade23";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-pytest ];
|
|
propagatedBuildInputs = [ pybind11-vendor rclpy rmf-fleet-adapter ];
|
|
|
|
meta = {
|
|
description = ''Python bindings for the rmf_fleet_adapter'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|