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/melodic/grid-map-demos/default.nix

26 lines
1.3 KiB
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, sensor-msgs, grid-map-cv, geometry-msgs, grid-map-rviz-plugin, grid-map-filters, octomap-msgs, catkin, grid-map-octomap, grid-map-core, cv-bridge, grid-map-loader, roscpp, grid-map-msgs, grid-map-ros, grid-map-visualization }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-grid-map-demos";
version = "1.6.2-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/anybotics/grid_map-release/archive/release/melodic/grid_map_demos/1.6.2-1.tar.gz";
name = "1.6.2-1.tar.gz";
sha256 = "54210fb49c552faa381c3dc4ae4ba2d2e8e3af02d35e8ad48bb8b09c209e80ee";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ grid-map-cv sensor-msgs geometry-msgs grid-map-rviz-plugin grid-map-filters octomap-msgs grid-map-octomap grid-map-core cv-bridge grid-map-loader roscpp grid-map-msgs grid-map-ros grid-map-visualization ];
propagatedBuildInputs = [ sensor-msgs grid-map-cv geometry-msgs grid-map-rviz-plugin grid-map-filters octomap-msgs grid-map-octomap grid-map-core cv-bridge grid-map-loader roscpp grid-map-visualization grid-map-ros grid-map-msgs ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Demo nodes to demonstrate the usage of the grid map library.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}