1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

regenerate all distros, Thu Nov 7 17:38:07 2019

This commit is contained in:
Ben Wolsieffer 2019-11-07 17:17:35 -05:00
parent 3acbedff58
commit d78acd7c65
827 changed files with 8227 additions and 2847 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rclcpp-lifecycle, ament-lint-common, ament-cmake-gtest, sensor-msgs, voxel-grid, rclcpp, ament-lint-auto, autoware-auto-cmake, lidar-utils }:
buildRosPackage {
pname = "ros-dashing-voxel-grid-nodes";
version = "0.0.2-r1";
src = fetchurl {
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/voxel_grid_nodes/0.0.2-1";
name = "archive.tar.gz";
sha256 = "ac1f44df6402df132e906095d1fe2b31a6842fafd024a99d69b1517a31105e39";
};
buildType = "ament_cmake";
buildInputs = [ rclcpp-lifecycle sensor-msgs voxel-grid rclcpp lidar-utils ];
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
propagatedBuildInputs = [ rclcpp-lifecycle sensor-msgs voxel-grid rclcpp lidar-utils ];
nativeBuildInputs = [ ament-cmake autoware-auto-cmake ];
meta = {
description = ''voxel grid filters'';
license = with lib.licenses; [ "Apex.AI License" ];
};
}