2024-08-16 13:54:37 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-08-16 13:54:37 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, assimp, cmake, cv-bridge, eigen, ffmpeg, freeglut, freenect, glfw3, libGL, libGLU, libjpeg, libpcap, libusb1, octomap, opencv, openni2, pkg-config, python3Packages, rclcpp, ros-environment, rosbag2-storage, suitesparse, tbb_2021_11, tinyxml-2, udev, wxGTK32, xorg, zlib }:
|
2024-08-16 13:54:37 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-mrpt-libbase";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "2.14.8-r1";
|
2024-08-16 13:54:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mrpt_ros-release/archive/release/humble/mrpt_libbase/2.14.8-1.tar.gz";
|
|
|
|
name = "2.14.8-1.tar.gz";
|
|
|
|
sha256 = "fe64ed98fb4e4e86398ff2f670af0f5952f9a2e6e9be7aae7c9bd1a0563d0d52";
|
2024-08-16 13:54:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2025-01-03 13:42:37 +00:00
|
|
|
buildInputs = [ ament-cmake assimp cmake cv-bridge eigen ffmpeg freeglut freenect glfw3 libGL libGLU libjpeg libpcap libusb1 octomap opencv opencv.cxxdev openni2 pkg-config python3Packages.pip python3Packages.pybind11 rclcpp ros-environment rosbag2-storage suitesparse tbb_2021_11 tinyxml-2 udev wxGTK32 xorg.libXrandr xorg.libXxf86vm zlib ];
|
2024-08-16 13:54:37 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Mobile Robot Programming Toolkit (MRPT) libraries (core C++ libraries).
|
|
|
|
This package contains: mrpt-io, mrpt-serialization, mrpt-random, mrpt-system, mrpt-rtti, mrpt-containers, mrpt-typemeta, mrpt-core, mrpt-random, mrpt-config, mrpt-expr";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|