mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
931 B
Nix
27 lines
931 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, gazebo-ros, gtest, catkin, xacro }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-schunk-description";
|
||
|
version = "0.6.12";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ipa320/schunk_modular_robotics-release/archive/release/melodic/schunk_description/0.6.12-0.tar.gz;
|
||
|
sha256 = "e8b387455b278c049357886b457c7016a4b79ba90cf0b83b5382813a17505d62";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ gtest ];
|
||
|
propagatedBuildInputs = [ gazebo-ros xacro ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package contains the description (mechanical, kinematic, visual,
|
||
|
etc.) of different schunk components. The files in this package are parsed and used by
|
||
|
a variety of other components. Most users will not interact directly
|
||
|
with this package.'';
|
||
|
#license = lib.licenses.Apache 2.0;
|
||
|
};
|
||
|
}
|