mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
968 B
Nix
27 lines
968 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, lidar-utils, ament-cmake-gtest, ament-lint-auto, autoware-auto-cmake, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-voxel-grid";
|
||
|
version = "0.0.2-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/voxel_grid/0.0.2-1";
|
||
|
name = "archive.tar.gz";
|
||
|
sha256 = "47966ef7f873e517e966fead87bd0a531e0c315f2067687e8466a061bf86f519";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ lidar-utils geometry-msgs ];
|
||
|
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
|
||
|
propagatedBuildInputs = [ lidar-utils geometry-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake autoware-auto-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''voxel grid filters'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|