1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/noetic/shape-msgs/default.nix

27 lines
932 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, geometry-msgs, message-generation, message-runtime, std-msgs }:
buildRosPackage {
pname = "ros-noetic-shape-msgs";
version = "1.13.2-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/common_msgs-release/archive/release/noetic/shape_msgs/1.13.2-1.tar.gz";
name = "1.13.2-1.tar.gz";
sha256 = "73b67116866cf351187ddb763ff22e8a3000b9af7cfbeee48f6779c5338b9a84";
};
buildType = "catkin";
buildInputs = [ catkin message-generation ];
propagatedBuildInputs = [ geometry-msgs message-runtime std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = "This package contains messages for defining shapes, such as simple solid
object primitives (cube, sphere, etc), planes, and meshes.";
license = with lib.licenses; [ bsdOriginal ];
};
}