1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/convex-decomposition/default.nix
2019-04-06 20:59:50 -04:00

23 lines
687 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, unzip }:
buildRosPackage {
pname = "ros-kinetic-convex-decomposition";
version = "0.1.11";
src = fetchurl {
url = https://github.com/ros-gbp/convex_decomposition-release/archive/release/kinetic/convex_decomposition/0.1.11-0.tar.gz;
sha256 = "990f02bf853c764648a95c2005bb32176728baf03ef691676979bdc45881a0fc";
};
buildInputs = [ unzip ];
propagatedBuildInputs = [ unzip ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Convex Decomposition Tool for Robot Model'';
#license = lib.licenses.MIT;
};
}