1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/melodic/qb-chain/default.nix

25 lines
819 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qb-chain-control, qb-chain-description }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-qb-chain";
version = "2.0.0";
src = fetchurl {
url = "https://bitbucket.org/qbrobotics/qbchain-ros-release/get/release/melodic/qb_chain/2.0.0-0.tar.gz";
name = "2.0.0-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "e21beffe73643665345d9027e82e376dd9b4cad3b1e429653276333060221e60";
};
buildType = "catkin";
propagatedBuildInputs = [ qb-chain-control qb-chain-description ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains the ROS interface to control multiple qbrobotics® devices simultaneously.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}