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, Fri Sep 24 13:26:09 2021

This commit is contained in:
Superflore 2021-09-24 13:26:09 +00:00 committed by Ben Wolsieffer
parent 6ed3fe9f34
commit 0c9bc531da
515 changed files with 5585 additions and 1495 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2021 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 ];
};
}