2024-05-24 14:00:52 +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-jazzy-mola-input-mulran-dataset";
|
2024-08-02 13:27:09 +00:00
|
|
|
version = "1.0.8-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-02 13:27:09 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/jazzy/mola_input_mulran_dataset/1.0.8-1.tar.gz";
|
|
|
|
name = "1.0.8-1.tar.gz";
|
|
|
|
sha256 = "4a0945b7580f1afe45d4ed166b0f64e1f8e314cba193532d14685c58324c7031";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
propagatedBuildInputs = [ mola-common mola-kernel mrpt2 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Offline RawDataSource from MulRan datasets";
|
|
|
|
license = with lib.licenses; [ gpl3Only ];
|
|
|
|
};
|
|
|
|
}
|