1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/schunk-modular-robotics/default.nix

25 lines
1,008 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, schunk-powercube-chain, schunk-libm5api, schunk-description, schunk-sdh, catkin, schunk-simulated-tactile-sensors }:
buildRosPackage {
pname = "ros-melodic-schunk-modular-robotics";
version = "0.6.13-r2";
src = fetchurl {
url = "https://github.com/ipa320/schunk_modular_robotics-release/archive/release/melodic/schunk_modular_robotics/0.6.13-2.tar.gz";
name = "0.6.13-2.tar.gz";
sha256 = "959d9afc2494f0a20d484eb9719a7d019ffe8d3c1ebe9217d619b2e0b162c55f";
};
buildType = "catkin";
propagatedBuildInputs = [ schunk-powercube-chain schunk-libm5api schunk-sdh schunk-description schunk-simulated-tactile-sensors ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This stack includes packages that provide access to the Schunk hardware through ROS messages, services and actions.'';
license = with lib.licenses; [ asl20 ];
};
}