mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
23 lines
700 B
Nix
23 lines
700 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, libusb1, catkin, libphidget21, libusb }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-phidgets-api";
|
||
|
version = "0.7.7";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/melodic/phidgets_api/0.7.7-0.tar.gz;
|
||
|
sha256 = "bfbd02aa5ca164b4ba558a53dd7ddeff44e81b7682c9ea21c08f4f3aa9333152";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ libphidget21 libusb ];
|
||
|
nativeBuildInputs = [ libusb1 catkin libphidget21 ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A C++ Wrapper for the Phidgets C API'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|