1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Mon Jun 19 17:15:22 2023

This commit is contained in:
Ben Wolsieffer 2023-06-19 17:15:23 -04:00
parent 7a2b545ecb
commit 381164fc34
2124 changed files with 35727 additions and 4192 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, pybind11-json-vendor, pybind11-vendor, rclpy, rmf-fleet-adapter }:
buildRosPackage {
pname = "ros-iron-rmf-fleet-adapter-python";
version = "2.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_ros2-release/archive/release/iron/rmf_fleet_adapter_python/2.2.0-1.tar.gz";
name = "2.2.0-1.tar.gz";
sha256 = "9a39c9e761387d1101d9352a84a5a4ab6311c3962f292d27d9335ee495774938";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-pytest ];
propagatedBuildInputs = [ pybind11-json-vendor pybind11-vendor rclpy rmf-fleet-adapter ];
meta = {
description = ''Python bindings for the rmf_fleet_adapter'';
license = with lib.licenses; [ asl20 ];
};
}