nix-ros-overlay/distros/foxy/rmf-fleet-adapter-python/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

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 ];
};
}