mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
722 B
Nix
24 lines
722 B
Nix
![]() |
|
||
|
# Copyright 2021 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-noetic-qb-chain-control";
|
||
|
version = "2.2.2-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://bitbucket.org/qbrobotics/qbchain-ros-release/get/release/noetic/qb_chain_control/2.2.2-1.tar.gz";
|
||
|
name = "2.2.2-1.tar.gz";
|
||
|
sha256 = "9c12af9deea8cf9dbfc05b2a240db768bd294bed0e2d4991bb6a0462ce96fcdf";
|
||
|
};
|
||
|
|
||
|
buildType = "catkin";
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package contains the ROS node to control multiple qbrobotics® devices simultaneously.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|