2019-08-30 00:06:28 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-08-30 00:06:28 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2021-05-29 00:40:01 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, libusb1 }:
|
2019-08-30 00:06:28 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-libphidgets";
|
2020-05-29 13:21:24 +00:00
|
|
|
version = "0.6.17-r1";
|
2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-29 13:21:24 +00:00
|
|
|
url = "https://github.com/ipa320/cob_extern-release/archive/release/melodic/libphidgets/0.6.17-1.tar.gz";
|
|
|
|
name = "0.6.17-1.tar.gz";
|
|
|
|
sha256 = "b6effbdb16d9b02d375266a7b24369e8f6bea86096777146546bccedff4884e5";
|
2019-08-30 00:06:28 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2021-05-29 00:40:01 +00:00
|
|
|
propagatedBuildInputs = [ libusb1 ];
|
2019-08-30 00:06:28 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package wraps the libphidgets to use it as a ros dependency'';
|
|
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
|
|
};
|
|
|
|
}
|