mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00

Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
26 lines
932 B
Nix
26 lines
932 B
Nix
|
|
# 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 ];
|
|
};
|
|
}
|