mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
24 lines
761 B
Nix
24 lines
761 B
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-foxy-rtabmap-python";
|
||
|
version = "0.21.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/foxy/rtabmap_python/0.21.1-1.tar.gz";
|
||
|
name = "0.21.1-1.tar.gz";
|
||
|
sha256 = "a922846b981c4484d4dc723fff1624af4a907d4a34282b8c8f5ed4f12af46bc4";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''RTAB-Map's python package.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|