1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/melodic/qb-chain-description/default.nix
2019-03-21 00:14:59 -04:00

21 lines
660 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-chain-description";
version = "2.0.0";
src = fetchurl {
url = https://bitbucket.org/qbrobotics/qbchain-ros-release/get/release/melodic/qb_chain_description/2.0.0-0.tar.gz;
sha256 = "fe4822d09d3d0b0ec0a6b337799c04774d1a775d700962cb6e5fd043c836d7c2";
};
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains the ROS description for complex chains of qbrobotics® devices.'';
#license = lib.licenses.BSD 3-Clause;
};
}