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