mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
856 B
Nix
24 lines
856 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, octomap, octomap-msgs, qt5, roscpp, rviz }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-octomap-rviz-plugins";
|
|
version = "0.2.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros-gbp/octomap_rviz_plugins-release/archive/release/melodic/octomap_rviz_plugins/0.2.2-1.tar.gz";
|
|
name = "0.2.2-1.tar.gz";
|
|
sha256 = "d1b11e67430f976ea17a6899ec116266d7b62f8e62fa579b67eb8393b72d1695";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ octomap octomap-msgs qt5.qtbase roscpp rviz ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''A set of plugins for displaying occupancy information decoded from binary octomap messages.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|