1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/melodic/rocon-std-msgs/default.nix

26 lines
887 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, rocon-service-pair-msgs, std-msgs }:
buildRosPackage {
pname = "ros-melodic-rocon-std-msgs";
version = "0.9.0";
src = fetchurl {
url = "https://github.com/yujinrobot-release/rocon_msgs-release/archive/release/melodic/rocon_std_msgs/0.9.0-0.tar.gz";
name = "0.9.0-0.tar.gz";
sha256 = "6f2aa4bddb42919a924d828b30e6eb4a2d25066bafe4d707c4a394393e138f18";
};
buildType = "catkin";
buildInputs = [ message-generation ];
propagatedBuildInputs = [ message-runtime rocon-service-pair-msgs std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Standard messages used by other rocon specific package types.'';
license = with lib.licenses; [ bsdOriginal ];
};
}