mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
855 B
Nix
24 lines
855 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-shape-msgs";
|
||
|
version = "1.12.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/common_msgs-release/archive/release/melodic/shape_msgs/1.12.7-0.tar.gz;
|
||
|
sha256 = "77d8b3b79ef765cde23be9b753eab1e457888adbec1dd82fc8eadd3edeff83e3";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ std-msgs message-runtime geometry-msgs ];
|
||
|
nativeBuildInputs = [ std-msgs catkin message-generation geometry-msgs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package contains messages for defining shapes, such as simple solid
|
||
|
object primitives (cube, sphere, etc), planes, and meshes.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|