1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/laser-scan-splitter/default.nix
2019-04-06 20:59:50 -04:00

23 lines
925 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, roscpp, sensor-msgs, catkin, nodelet }:
buildRosPackage {
pname = "ros-kinetic-laser-scan-splitter";
version = "0.3.2";
src = fetchurl {
url = https://github.com/ros-gbp/scan_tools-release/archive/release/kinetic/laser_scan_splitter/0.3.2-0.tar.gz;
sha256 = "1ca78fa9bf67097693b7a19019a02b96ad48d310cf5d39e9a5e07d21b9f639ad";
};
buildInputs = [ sensor-msgs roscpp nodelet ];
propagatedBuildInputs = [ sensor-msgs roscpp nodelet ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The laser_scan_splitter takes in a LaserScan message and splits it into a number of other LaserScan messages. Each of the resulting laser scans can be assigned an arbitrary coordinate frame, and is published on a separate topic.'';
#license = lib.licenses.BSD;
};
}