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/jazzy/mola-input-mulran-dataset/default.nix

26 lines
794 B
Nix
Raw Normal View History

# 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";
version = "1.0.8-r1";
src = fetchurl {
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";
};
buildType = "cmake";
buildInputs = [ cmake ];
propagatedBuildInputs = [ mola-common mola-kernel mrpt2 ];
nativeBuildInputs = [ cmake ];
meta = {
description = "Offline RawDataSource from MulRan datasets";
license = with lib.licenses; [ gpl3Only ];
};
}