1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-25 16:15:34 +03:00
nix-ros-overlay/dashing/lidar-utils/default.nix
2019-11-07 17:46:51 -05:00

26 lines
1 KiB
Nix

# 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, rclcpp, ament-lint-auto, autoware-auto-cmake }:
buildRosPackage {
pname = "ros-dashing-lidar-utils";
version = "0.0.2-r1";
src = fetchurl {
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/lidar_utils/0.0.2-1";
name = "archive.tar.gz";
sha256 = "e09998388ec7ab13b7b1e34126310139d93dd9a2494ebec9e28819c2bf2efa42";
};
buildType = "ament_cmake";
buildInputs = [ rclcpp-lifecycle sensor-msgs rclcpp ];
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
propagatedBuildInputs = [ rclcpp-lifecycle sensor-msgs rclcpp ];
nativeBuildInputs = [ ament-cmake autoware-auto-cmake ];
meta = {
description = ''Common utility functions and classes for point clouds'';
license = with lib.licenses; [ "Apex.AI License" ];
};
}