2020-10-23 13:30:31 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, laser-geometry, roscpp, sensor-msgs, tf }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-cob-scan-unifier";
|
2024-05-10 13:12:06 +00:00
|
|
|
version = "0.7.17-r2";
|
2020-10-23 13:30:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-10 13:12:06 +00:00
|
|
|
url = "https://github.com/4am-robotics/cob_driver-release/archive/release/noetic/cob_scan_unifier/0.7.17-2.tar.gz";
|
|
|
|
name = "0.7.17-2.tar.gz";
|
|
|
|
sha256 = "cefc67a347d6a5299f4d67e9d30dc2f918c520caf97a20ed03b7688fb0aa7c1b";
|
2020-10-23 13:30:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-10-23 13:30:31 +00:00
|
|
|
propagatedBuildInputs = [ laser-geometry roscpp sensor-msgs tf ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The cob_scan_unifier package holds code to unify two or more laser-scans to one unified scan-message";
|
2020-10-23 13:30:31 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|