1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/imu-pipeline/default.nix

24 lines
733 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, imu-processors, imu-transformer }:
buildRosPackage {
pname = "ros-melodic-imu-pipeline";
version = "0.2.3";
src = fetchurl {
url = "https://github.com/ros-gbp/imu_pipeline-release/archive/release/melodic/imu_pipeline/0.2.3-0.tar.gz";
name = "0.2.3-0.tar.gz";
sha256 = "9ee5a8bc23b24ed9fc68e57f0a23a27cee64664c6cddd61e6ce6474d2545c3aa";
};
buildType = "catkin";
propagatedBuildInputs = [ imu-processors imu-transformer ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''imu_pipeline'';
license = with lib.licenses; [ bsdOriginal gpl1 ];
};
}