2021-03-12 14:44:32 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-03-12 14:44:32 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, depth-image-proc, diagnostic-aggregator, fetch-description, fetch-drivers, fetch-moveit-config, fetch-navigation, fetch-open-auto-dock, fetch-teleop, graft, image-proc, joy, openni2-launch, robot-state-publisher, sensor-msgs, sick-tim, sound-play }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-fetch-bringup";
|
2021-04-30 12:50:24 +00:00
|
|
|
version = "0.9.3-r1";
|
2021-03-12 14:44:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-04-30 12:50:24 +00:00
|
|
|
url = "https://github.com/fetchrobotics-gbp/fetch_robots-release/archive/release/noetic/fetch_bringup/0.9.3-1.tar.gz";
|
|
|
|
name = "0.9.3-1.tar.gz";
|
|
|
|
sha256 = "2aefed0cb404f41fd0729945bff58a05784f6ff4872faf781fd673933b7d9bb1";
|
2021-03-12 14:44:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-03-12 14:44:32 +00:00
|
|
|
propagatedBuildInputs = [ depth-image-proc diagnostic-aggregator fetch-description fetch-drivers fetch-moveit-config fetch-navigation fetch-open-auto-dock fetch-teleop graft image-proc joy openni2-launch robot-state-publisher sensor-msgs sick-tim sound-play ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Bringup for fetch";
|
2021-03-12 14:44:32 +00:00
|
|
|
license = with lib.licenses; [ "Proprietary" ];
|
|
|
|
};
|
|
|
|
}
|