mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 10:14:50 +03:00
26 lines
994 B
Nix
26 lines
994 B
Nix
|
|
# Copyright 2023 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-foxy-graph-msgs";
|
|
version = "0.2.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/PickNikRobotics/graph_msgs-release/archive/release/foxy/graph_msgs/0.2.0-1.tar.gz";
|
|
name = "0.2.0-1.tar.gz";
|
|
sha256 = "b90b8986b023301eab689d942df2592f01cb3423e64a1e880ae77df19dfc84c6";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|