1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/robotiq-controllers/default.nix

27 lines
902 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, controller-interface, std-srvs }:
buildRosPackage {
pname = "ros-jazzy-robotiq-controllers";
version = "0.0.1-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_robotiq_gripper-release/archive/release/jazzy/robotiq_controllers/0.0.1-3.tar.gz";
name = "0.0.1-3.tar.gz";
sha256 = "e429584dc4ededa45c8a75cdc760a55460e91326c6e8e5f81b1d9fc8fd8c167b";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ controller-interface std-srvs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Controllers for the Robotiq gripper.";
license = with lib.licenses; [ bsd3 ];
};
}