mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 13:40:32 +03:00
25 lines
910 B
Nix
25 lines
910 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, sensor-msgs, image-geometry, rclcpp, ament-cmake-ros, opencv3 }:
|
|
buildRosPackage {
|
|
pname = "ros-crystal-depthimage-to-laserscan";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros2-gbp/depthimage_to_laserscan-release/archive/release/crystal/depthimage_to_laserscan/2.2.1-0.tar.gz;
|
|
sha256 = "582d63c338ab61eaa11d0299ba51a6da91979a75877b6c72208f71891e6b13a1";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ sensor-msgs opencv3 rclcpp image-geometry ];
|
|
checkInputs = [ ament-cmake-gtest ];
|
|
propagatedBuildInputs = [ sensor-msgs opencv3 rclcpp image-geometry ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''depthimage_to_laserscan'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|