mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
1 KiB
Nix
24 lines
1 KiB
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, actionlib, catkin, cob-srvs, control-msgs, dynamic-reconfigure, roscpp, sensor-msgs, std-msgs, std-srvs, trajectory-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cob-trajectory-controller";
|
|
version = "0.8.12-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_control-release/archive/release/melodic/cob_trajectory_controller/0.8.12-1.tar.gz";
|
|
name = "0.8.12-1.tar.gz";
|
|
sha256 = "048ff51469f4331f28d37dda5522ef4fbafa2ae0a3c3c4014e82dab26aa3f2c0";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ actionlib cob-srvs control-msgs dynamic-reconfigure roscpp sensor-msgs std-msgs std-srvs trajectory-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This package provides a trajectory controller which controlls velocities for a chain of joints. This controller can be used e.g. with [[schunk_powercube_chain]].'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|