1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-27 00:45:34 +03:00
nix-ros-overlay/kinetic/class-loader/default.nix
2019-04-06 20:59:50 -04:00

23 lines
1.1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, poco, cmake-modules, boost, catkin, console-bridge }:
buildRosPackage {
pname = "ros-kinetic-class-loader";
version = "0.3.9";
src = fetchurl {
url = https://github.com/ros-gbp/class_loader-release/archive/release/kinetic/class_loader/0.3.9-0.tar.gz;
sha256 = "5733b84bec8e5a4da05b07d2f4594541a04a6e88d772e9d9a944776429f7d45b";
};
buildInputs = [ poco console-bridge cmake-modules boost ];
propagatedBuildInputs = [ poco console-bridge boost ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The class_loader package is a ROS-independent package for loading plugins during runtime and the foundation of the higher level ROS "pluginlib" library. class_loader utilizes the host operating system's runtime loader to open runtime libraries (e.g. .so/.dll files), introspect the library for exported plugin classes, and allows users to instantiate objects of said exported classes without the explicit declaration (i.e. header file) for those classes.'';
#license = lib.licenses.BSD;
};
}