mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
1.5 KiB
Nix
25 lines
1.5 KiB
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, boost, builtin-interfaces, ceres-solver, eigen, launch, launch-testing, liblapack, message-filters, nav-msgs, nav2-map-server, pluginlib, qt5, rclcpp, rosidl-default-generators, rviz-common, rviz-default-plugins, rviz-rendering, sensor-msgs, std-msgs, std-srvs, suitesparse, tbb, tf2, tf2-geometry-msgs, tf2-ros, tf2-sensor-msgs, visualization-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-slam-toolbox";
|
|
version = "2.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/slam_toolbox-release/archive/release/eloquent/slam_toolbox/2.1.1-1.tar.gz";
|
|
name = "2.1.1-1.tar.gz";
|
|
sha256 = "7fb1b828a0db4d09f08dc46124522187c2a1e68ceddce758af860335359f63b0";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-cmake-gtest launch launch-testing ];
|
|
propagatedBuildInputs = [ boost builtin-interfaces ceres-solver eigen liblapack message-filters nav-msgs nav2-map-server pluginlib qt5.qtbase rclcpp rosidl-default-generators rviz-common rviz-default-plugins rviz-rendering sensor-msgs std-msgs std-srvs suitesparse tbb tf2 tf2-geometry-msgs tf2-ros tf2-sensor-msgs visualization-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''This package provides a sped up improved slam karto with updated SDK and visualization and modification toolsets'';
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
};
|
|
}
|