mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
1 KiB
Nix
25 lines
1 KiB
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, ament-lint-auto, ament-lint-common, control-msgs, rclcpp, rclcpp-lifecycle, rcutils, realtime-tools }:
|
|
buildRosPackage {
|
|
pname = "ros-foxy-control-toolbox";
|
|
version = "2.0.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/control_toolbox-release/archive/release/foxy/control_toolbox/2.0.2-1.tar.gz";
|
|
name = "2.0.2-1.tar.gz";
|
|
sha256 = "d1dedcf0b9134b3d066539b3b83d4e0bfe91e588ef060c72bcc75a3b6be1f854";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ament-lint-auto ament-lint-common 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; [ bsdOriginal ];
|
|
};
|
|
}
|