mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
25 lines
912 B
Nix
25 lines
912 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ros-environment, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-mqtt-client-interfaces";
|
|
version = "2.3.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/mqtt_client-release/archive/release/rolling/mqtt_client_interfaces/2.3.0-1.tar.gz";
|
|
name = "2.3.0-1.tar.gz";
|
|
sha256 = "dd72a73f3ba2b6907c155a69f79608c836718eb8ca2850a74e63dcb33283fe0f";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
propagatedBuildInputs = [ ros-environment rosidl-default-runtime std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Message and service definitions for mqtt_client";
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|