1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/octomap-mapping/default.nix

23 lines
752 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, octomap-server, catkin }:
buildRosPackage {
pname = "ros-kinetic-octomap-mapping";
version = "0.6.1";
src = fetchurl {
url = https://github.com/ros-gbp/octomap_mapping-release/archive/release/kinetic/octomap_mapping/0.6.1-0.tar.gz;
sha256 = "109367aa699fdd9057fe985315d3efb79bf8f881dd9d6f260e7a4a17d47b5fdb";
};
propagatedBuildInputs = [ octomap-server ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Mapping tools to be used with the <a href="http://octomap.github.io/">OctoMap library</a>, implementing a 3D occupancy grid mapping.'';
#license = lib.licenses.BSD;
};
}