mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
851 B
Nix
23 lines
851 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, rocon-service-pair-msgs, message-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-rocon-std-msgs";
|
|
version = "0.9.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/yujinrobot-release/rocon_msgs-release/archive/release/kinetic/rocon_std_msgs/0.9.0-1.tar.gz;
|
|
sha256 = "6331f55125bd97a86bae776724a638edbb38db60afaf546a58fa79a45fe717c8";
|
|
};
|
|
|
|
buildInputs = [ std-msgs message-generation rocon-service-pair-msgs ];
|
|
propagatedBuildInputs = [ std-msgs rocon-service-pair-msgs message-runtime ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Standard messages used by other rocon specific package types.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|