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

26 lines
995 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, control-msgs, rclcpp, rclcpp-lifecycle, rcutils, realtime-tools }:
buildRosPackage {
pname = "ros-foxy-control-toolbox";
version = "2.2.0-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/control_toolbox-release/archive/release/foxy/control_toolbox/2.2.0-1.tar.gz";
name = "2.2.0-1.tar.gz";
sha256 = "6d1cf4c12e6f9b30df164cc9b6abc1fc4db09cf5d0a85e7deea8012514424a8b";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock ament-cmake-gtest rclcpp-lifecycle ];
propagatedBuildInputs = [ control-msgs rclcpp rcutils realtime-tools ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''The control toolbox contains modules that are useful across all controllers.'';
license = with lib.licenses; [ bsd3 ];
};
}