mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
952 B
Nix
25 lines
952 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, builtin-interfaces, rcl-interfaces, rosidl-default-generators, rosidl-default-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-rosapi-msgs";
|
|
version = "1.2.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosbridge_suite-release/archive/release/humble/rosapi_msgs/1.2.0-1.tar.gz";
|
|
name = "1.2.0-1.tar.gz";
|
|
sha256 = "c976558fb5e7373023584390be0b0c27340b4024d9adcb377a8cca0e5d8c8302";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ builtin-interfaces rcl-interfaces rosidl-default-runtime ];
|
|
nativeBuildInputs = [ ament-cmake-ros rosidl-default-generators ];
|
|
|
|
meta = {
|
|
description = ''Provides service calls for getting ros meta-information, like list of
|
|
topics, services, params, etc.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|