nix-ros-overlay/distros/jazzy/rtabmap-python/default.nix

24 lines
766 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages }:
buildRosPackage {
pname = "ros-jazzy-rtabmap-python";
version = "0.21.10-r1";
src = fetchurl {
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/jazzy/rtabmap_python/0.21.10-1.tar.gz";
name = "0.21.10-1.tar.gz";
sha256 = "3cbe897afcc6ccbd2c3156d58835e64209fe7b00196ad1278d4b48efa579b5b8";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
meta = {
description = "RTAB-Map's python package.";
license = with lib.licenses; [ bsdOriginal ];
};
}