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/distros/melodic/ncd-parser/default.nix

25 lines
823 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, roscpp, sensor-msgs, tf }:
buildRosPackage {
pname = "ros-melodic-ncd-parser";
version = "0.3.3-r2";
src = fetchurl {
url = "https://github.com/ros-gbp/scan_tools-release/archive/release/melodic/ncd_parser/0.3.3-2.tar.gz";
name = "0.3.3-2.tar.gz";
sha256 = "d9450f71b29650cdf242e1a50b4489d5dc6cb66bd1b01f6798e6eee82d0829d8";
};
buildType = "catkin";
propagatedBuildInputs = [ roscpp sensor-msgs tf ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The ncd_parser package reads in .alog data files from the New College Dataset and broadcasts scan and odometry messages to ROS.'';
license = with lib.licenses; [ bsdOriginal ];
};
}