mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
25 lines
1.1 KiB
Nix
25 lines
1.1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, controller-manager-msgs, diagnostic-msgs, geometry-msgs, message-generation, message-runtime, nav-msgs, roscpp, rospy, std-msgs, std-srvs, tf, tf2, urdf }:
|
|
buildRosPackage {
|
|
pname = "ros-noetic-cob-base-controller-utils";
|
|
version = "0.8.24-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/4am-robotics/cob_control-release/archive/release/noetic/cob_base_controller_utils/0.8.24-2.tar.gz";
|
|
name = "0.8.24-2.tar.gz";
|
|
sha256 = "65295c69e560055049283984571ab0b47ba5e268112694631582279aabc49d73";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ catkin message-generation ];
|
|
propagatedBuildInputs = [ controller-manager-msgs diagnostic-msgs geometry-msgs message-runtime nav-msgs roscpp rospy std-msgs std-srvs tf tf2 urdf ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = "The cob_base_controller_utils package contains common utils for various base_controllers.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|