2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, qb-device-srvs, catkin, qb-device-utils, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-qb-device-driver";
|
|
|
|
version = "2.0.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://bitbucket.org/qbrobotics/qbdevice-ros-release/get/release/melodic/qb_device_driver/2.0.1-0.tar.gz;
|
|
|
|
sha256 = "5b3ec2c7b2ecf6aa8e1b99156423cb9f88208eb8d02024c2b30b8c6b1570e5d4";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ qb-device-srvs roscpp qb-device-utils ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ qb-device-srvs roscpp qb-device-utils ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package contains a device-independent API wrapper for qbrobotics® devices.'';
|
|
|
|
#license = lib.licenses.BSD 3-Clause;
|
|
|
|
};
|
|
|
|
}
|