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/nodelet/default.nix

32 lines
1.3 KiB
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, bondcpp, message-generation, utillinux, boost, pluginlib, std-msgs, cmake-modules, catkin, rospy, roscpp, message-runtime, rosconsole }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-nodelet";
version = "1.9.16";
src = fetchurl {
url = "https://github.com/ros-gbp/nodelet_core-release/archive/release/melodic/nodelet/1.9.16-0.tar.gz";
name = "1.9.16-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "3a9e9701df570659d70f871eb7e1970dacd3b89c02513c456f8f0ea1a446d15a";
};
buildType = "catkin";
buildInputs = [ bondcpp utillinux boost pluginlib std-msgs cmake-modules roscpp message-generation rosconsole ];
propagatedBuildInputs = [ bondcpp utillinux boost pluginlib std-msgs rospy roscpp message-runtime rosconsole ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The nodelet package is designed to provide a way to run multiple
algorithms in the same process with zero copy transport between
algorithms.
This package provides both the nodelet base class needed for
implementing a nodelet, as well as the NodeletLoader class used
for instantiating nodelets.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}