mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-12 13:19:02 +03:00
26 lines
991 B
Nix
26 lines
991 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-cmake, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-graph-msgs";
|
|
version = "0.2.0-r5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/graph_msgs-release/archive/release/rolling/graph_msgs/0.2.0-5.tar.gz";
|
|
name = "0.2.0-5.tar.gz";
|
|
sha256 = "aecf305c28706a3df9518f3c9149583a40277474311b95795b36f6383f1af992";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
checkInputs = [ ament-lint-auto ament-lint-cmake ];
|
|
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "ROS messages for publishing graphs of different data types";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|