mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-18 05:18:39 +03:00
27 lines
906 B
Nix
27 lines
906 B
Nix
![]() |
|
||
|
# Copyright 2022 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 = "3.5.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/3.5.0-1.tar.gz";
|
||
|
name = "3.5.0-1.tar.gz";
|
||
|
sha256 = "aa1816bc94d1a94c6f46ee44804552d0893a4e9f267ae414ae43395084fc3bc6";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ];
|
||
|
checkInputs = [ ament-cmake-gmock ];
|
||
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle sensor-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Description of controller_interface'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|