2020-06-12 13:17:24 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-06-12 13:17:24 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, imu-processors, imu-transformer }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-imu-pipeline";
|
2022-12-02 13:31:38 +00:00
|
|
|
version = "0.3.1-r1";
|
2020-06-12 13:17:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-12-02 13:31:38 +00:00
|
|
|
url = "https://github.com/ros-gbp/imu_pipeline-release/archive/release/noetic/imu_pipeline/0.3.1-1.tar.gz";
|
|
|
|
name = "0.3.1-1.tar.gz";
|
|
|
|
sha256 = "3a8f6074735f46cdd3d4953a6673b3351e998a88b63b642433429ae4f24560a1";
|
2020-06-12 13:17:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-06-12 13:17:24 +00:00
|
|
|
propagatedBuildInputs = [ imu-processors imu-transformer ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "imu_pipeline";
|
2022-03-28 21:23:37 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal "GPL" ];
|
2020-06-12 13:17:24 +00:00
|
|
|
};
|
|
|
|
}
|