mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, controller-manager, joint-trajectory-controller, position-controllers }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-pal-gripper-controller-configuration";
|
|
version = "3.5.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pal-gbp/pal_gripper-release/archive/release/humble/pal_gripper_controller_configuration/3.5.0-1.tar.gz";
|
|
name = "3.5.0-1.tar.gz";
|
|
sha256 = "92d0d326558df6aa67ab35ae58e74c1716230ecf42761adfd80c15e9e8229340";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-auto ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ controller-manager joint-trajectory-controller position-controllers ];
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
meta = {
|
|
description = "The pal_gripper_controller_configuration package";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|