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/melodic/graph-msgs/default.nix

26 lines
873 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, geometry-msgs, message-runtime, std-msgs, catkin, message-generation }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-graph-msgs";
version = "0.1.0";
src = fetchurl {
url = "https://github.com/davetcoleman/graph_msgs-release/archive/release/melodic/graph_msgs/0.1.0-0.tar.gz";
name = "0.1.0-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "90eea30842973033f2e20449457a89b871d1a66249113b2a423da84f45b4ff0a";
};
buildType = "catkin";
buildInputs = [ std-msgs message-generation geometry-msgs ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ std-msgs message-runtime geometry-msgs ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''ROS messages for publishing graphs of different data types'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}