mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
883 B
Nix
23 lines
883 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, laser-scan-splitter, scan-to-cloud-converter, catkin, laser-ortho-projector, ncd-parser, laser-scan-matcher, laser-scan-sparsifier, polar-scan-matcher }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-scan-tools";
|
||
|
version = "0.3.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/scan_tools-release/archive/release/kinetic/scan_tools/0.3.2-0.tar.gz;
|
||
|
sha256 = "64e88ee545cbf17c8373709ea7e8e3fa2e07034ebebd567122b34f75b318ad6f";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ ncd-parser laser-scan-matcher laser-scan-sparsifier laser-scan-splitter scan-to-cloud-converter laser-ortho-projector polar-scan-matcher ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Laser scan processing tools.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|