1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/rosgraph-msgs/default.nix
2019-04-06 20:59:50 -04:00

23 lines
846 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, std-msgs, message-generation, catkin, message-runtime }:
buildRosPackage {
pname = "ros-kinetic-rosgraph-msgs";
version = "1.11.2";
src = fetchurl {
url = https://github.com/ros-gbp/ros_comm_msgs-release/archive/release/kinetic/rosgraph_msgs/1.11.2-0.tar.gz;
sha256 = "c2f1c73750c45998279607f10a57c4bb75839e1872fbbc831acd7ea06c49aa9f";
};
buildInputs = [ std-msgs message-generation ];
propagatedBuildInputs = [ std-msgs message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Messages relating to the ROS Computation Graph. These are generally considered to be low-level messages that end users do not interact with.'';
#license = lib.licenses.BSD;
};
}