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-08-02 13:27:09 +00:00
|
|
|
version = "1.0.8-r1";
|
2024-03-22 13:05:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-02 13:27:09 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/humble/mola_input_mulran_dataset/1.0.8-1.tar.gz";
|
|
|
|
name = "1.0.8-1.tar.gz";
|
|
|
|
sha256 = "9616e80cc99c2a06caa188de342ee10d41a9bddd1767e9494e86946abb951a9e";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|