mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
25 lines
986 B
Nix
25 lines
986 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, controller-interface, example-interfaces, geometry-msgs, rclcpp, realtime-tools }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-picknik-reset-fault-controller";
|
|
version = "0.0.4-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/picknik_controllers-release/archive/release/rolling/picknik_reset_fault_controller/0.0.4-2.tar.gz";
|
|
name = "0.0.4-2.tar.gz";
|
|
sha256 = "4d0dc70b64f55a2d0323e85b90475783689323affc4b49f8bb2a3874826d2ea2";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-ros ];
|
|
propagatedBuildInputs = [ controller-interface example-interfaces geometry-msgs rclcpp realtime-tools ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = "ROS 2 controller that offers a service to clear faults in a hardware interface";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|