mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-16 23:21:00 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, kdl-parser, collada-urdf, catkin, urdf-parser-plugin, urdfdom, collada-parser, urdf, resource-retriever, joint-state-publisher }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-robot-model";
|
||
|
version = "1.12.11";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/robot_model-release/archive/release/kinetic/robot_model/1.12.11-0.tar.gz;
|
||
|
sha256 = "520f64793de633ac49e6457697e098a40a2d2702a7d04123df1495c84356e051";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ urdfdom kdl-parser collada-parser urdf resource-retriever collada-urdf joint-state-publisher urdf-parser-plugin ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''<tt>robot_model</tt> contains packages for modeling various
|
||
|
aspects of robot information, specified in the Xml Robot
|
||
|
Description Format (URDF). The core package of this stack
|
||
|
is <a href="http://ros.org/wiki/urdf">urdf</a>, which parses URDF files, and constructs an
|
||
|
object model (C++) of the robot.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|