mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 06:08:39 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
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, geometry-msgs, hardware-interface, rclcpp-lifecycle, realtime-tools, sensor-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-controller-interface";
|
|
version = "4.22.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/4.22.0-1.tar.gz";
|
|
name = "4.22.0-1.tar.gz";
|
|
sha256 = "2558297cca14d6f4b35398efc2d7a3d0bd96203311bd8a5a15f16d420f2f6f09";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ament-cmake-gen-version-h sensor-msgs ];
|
|
checkInputs = [ ament-cmake-gmock geometry-msgs ];
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle realtime-tools ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-gen-version-h ];
|
|
|
|
meta = {
|
|
description = "Description of controller_interface";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|