mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 09:52:22 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, ros-environment, rosidl-default-generators, rosidl-default-runtime, shape-msgs, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-derived-object-msgs";
|
|
version = "4.0.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/astuff_sensor_msgs-release/archive/release/humble/derived_object_msgs/4.0.0-1.tar.gz";
|
|
name = "4.0.0-1.tar.gz";
|
|
sha256 = "f4bebbf2f5c65668d9ef22f4199dae8e172b0e37022a6a106c06c4976c86bd34";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ros-environment rosidl-default-generators ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime shape-msgs std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Abstracted Messages from Perception Modalities";
|
|
license = with lib.licenses; [ mit ];
|
|
};
|
|
}
|