mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
1 KiB
Nix
23 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, std-srvs, phidgets-api, pluginlib, sensor-msgs, catkin, roscpp, diagnostic-updater, nodelet, std-msgs, diagnostic-msgs, roslaunch, tf, imu-filter-madgwick, diagnostic-aggregator }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-phidgets-imu";
|
||
|
version = "0.7.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/melodic/phidgets_imu/0.7.7-0.tar.gz;
|
||
|
sha256 = "65ebf60e6f3b3113b73e67b86b44184e8157dd2b33a3a9ced64765641a1a32df";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ std-srvs phidgets-api pluginlib sensor-msgs roscpp diagnostic-updater nodelet std-msgs diagnostic-msgs tf imu-filter-madgwick diagnostic-aggregator ];
|
||
|
nativeBuildInputs = [ std-srvs phidgets-api pluginlib sensor-msgs catkin roscpp diagnostic-updater nodelet std-msgs diagnostic-msgs roslaunch tf ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Driver for the Phidgets Spatial 3/3/3 devices'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|