2020-06-05 12:54:26 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-06-05 12:54:26 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-07-01 13:51:59 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, python3Packages, rosbridge-library, rosgraph, rosnode, rospy }:
|
2020-06-05 12:54:26 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-rosapi";
|
2023-10-06 13:48:50 +00:00
|
|
|
version = "0.11.17-r1";
|
2020-06-05 12:54:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-06 13:48:50 +00:00
|
|
|
url = "https://github.com/RobotWebTools-release/rosbridge_suite-release/archive/release/noetic/rosapi/0.11.17-1.tar.gz";
|
|
|
|
name = "0.11.17-1.tar.gz";
|
|
|
|
sha256 = "7f94f672ef42b8a8d33be48c5890f43f8b9cf1de4495e018242d0eb0231d9ec8";
|
2020-06-05 12:54:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin message-generation python3Packages.setuptools ];
|
2020-06-05 12:54:26 +00:00
|
|
|
propagatedBuildInputs = [ message-runtime rosbridge-library rosgraph rosnode rospy ];
|
2022-07-01 13:51:59 +00:00
|
|
|
nativeBuildInputs = [ catkin python3Packages.setuptools ];
|
2020-06-05 12:54:26 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Provides service calls for getting ros meta-information, like list of
|
|
|
|
topics, services, params, etc.";
|
2020-06-05 12:54:26 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|