mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
22 lines
782 B
Nix
22 lines
782 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, qb-hand-control, qb-hand-hardware-interface, catkin, qb-hand-description }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-qb-hand";
|
|
version = "2.0.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = https://bitbucket.org/qbrobotics/qbhand-ros-release/get/release/melodic/qb_hand/2.0.0-1.tar.gz;
|
|
sha256 = "aabf19f098662ae7195c61133104fbb799d47e58f9fcc52a069fcd08978b3cc9";
|
|
};
|
|
|
|
propagatedBuildInputs = [ qb-hand-control qb-hand-hardware-interface qb-hand-description ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This package contains the ROS interface for qbrobotics® qbhand device.'';
|
|
#license = lib.licenses.BSD 3-Clause;
|
|
};
|
|
}
|