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