2020-06-05 12:54:26 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2020-06-05 12:54:26 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, libphidget22 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-phidgets-api";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "1.0.9-r1";
|
2020-06-05 12:54:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/noetic/phidgets_api/1.0.9-1.tar.gz";
|
|
|
|
name = "1.0.9-1.tar.gz";
|
|
|
|
sha256 = "3358a03bd9a2648fbc7a8857e89fbe960ab405e6de675083a0eabed03057fb19";
|
2020-06-05 12:54:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-06-05 12:54:26 +00:00
|
|
|
propagatedBuildInputs = [ libphidget22 ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A C++ Wrapper for the Phidgets C API'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|