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-galactic-control-toolbox";
|
|
version = "2.0.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/control_toolbox-release/archive/release/galactic/control_toolbox/2.0.2-1.tar.gz";
|
|
name = "2.0.2-1.tar.gz";
|
|
sha256 = "6e5f25cbfe125a745a4a7ae9f8d43160fe1cb8969ffe084a854d3acbecf3484b";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|