2024-03-22 13:05:17 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, mola-common, mola-kernel, mrpt2 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-mola-input-mulran-dataset";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "1.0.7-r1";
|
2024-03-22 13:05:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/humble/mola_input_mulran_dataset/1.0.7-1.tar.gz";
|
|
|
|
name = "1.0.7-1.tar.gz";
|
|
|
|
sha256 = "cedb9e4f68e5bd1414d12c9656c53d83f4a2273d210de12bf569b36962748e72";
|
2024-03-22 13:05:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
propagatedBuildInputs = [ mola-common mola-kernel mrpt2 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Offline RawDataSource from MulRan datasets";
|
2024-03-22 13:05:17 +00:00
|
|
|
license = with lib.licenses; [ gpl3Only ];
|
|
|
|
};
|
|
|
|
}
|