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/kinetic/urdf-parser-plugin/default.nix

24 lines
714 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, urdfdom-headers, catkin }:
buildRosPackage {
pname = "ros-kinetic-urdf-parser-plugin";
version = "1.12.12";
src = fetchurl {
url = https://github.com/ros-gbp/urdf-release/archive/release/kinetic/urdf_parser_plugin/1.12.12-0.tar.gz;
sha256 = "8c3407882b0c5e3dd1ad56ec5c1321c2db117c6eccdf49f93d1c4d29357fdbcf";
};
buildInputs = [ urdfdom-headers ];
propagatedBuildInputs = [ urdfdom-headers ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains a C++ base class for URDF parsers.'';
#license = lib.licenses.BSD;
};
}