1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 22:28:39 +03:00
nix-ros-overlay/distros/jazzy/controller-interface/default.nix

27 lines
982 B
Nix
Raw Normal View History

# 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-jazzy-controller-interface";
version = "4.16.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/jazzy/controller_interface/4.16.1-1.tar.gz";
name = "4.16.1-1.tar.gz";
sha256 = "95157f222c4bf2475fd14099ca8ee22799f4708e8b933643f5ff3b5f362b7bb2";
};
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 ];
};
}