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/distros/humble/rmf-fleet-adapter-python/default.nix
2022-06-11 13:21:09 -04:00

24 lines
815 B
Nix

# Copyright 2022 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-humble-rmf-fleet-adapter-python";
version = "1.4.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_ros2-release/archive/release/humble/rmf_fleet_adapter_python/1.4.0-3.tar.gz";
name = "1.4.0-3.tar.gz";
sha256 = "9a691db013b69069fe0d0d0764cda92144fb32cd2964771f06bb93194a2fcc35";
};
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 ];
};
}