mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
656 B
Nix
23 lines
656 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, imu-transformer, imu-processors }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-imu-pipeline";
|
||
|
version = "0.2.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/imu_pipeline-release/archive/release/kinetic/imu_pipeline/0.2.3-0.tar.gz;
|
||
|
sha256 = "f645728a8a9b9ae07c90f61861c29f477a85a66046a3afd0369c33e683adabf6";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ imu-transformer imu-processors ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''imu_pipeline'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|