2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, libusb }:
|
2019-08-30 00:06:28 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-libphidgets";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.6.14-r1";
|
2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/ipa320/cob_extern-release/archive/release/melodic/libphidgets/0.6.14-1.tar.gz";
|
|
|
|
name = "0.6.14-1.tar.gz";
|
|
|
|
sha256 = "a34ac46d7679c615ab632f4c7d59472db4794c323677ca94ac4d335527a82d62";
|
2019-08-30 00:06:28 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-08-30 00:06:28 -04:00
|
|
|
propagatedBuildInputs = [ libusb ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package wraps the libphidgets to use it as a ros dependency'';
|
|
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
|
|
};
|
|
|
|
}
|