mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-22 07:00:17 +03:00
26 lines
906 B
Nix
26 lines
906 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, hardware-interface, rclcpp-lifecycle, sensor-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-controller-interface";
|
|
version = "4.6.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/4.6.0-1.tar.gz";
|
|
name = "4.6.0-1.tar.gz";
|
|
sha256 = "83aab42b1757d1a2cb49ddd1fba6d9c3ee46c234e22eb644426c481ca401686b";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake sensor-msgs ];
|
|
checkInputs = [ ament-cmake-gmock ];
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Description of controller_interface'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|