2020-05-23 15:15:06 -04:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, nodelet, nodelet-topic-tools }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-nodelet-core";
|
2021-10-08 13:26:21 +00:00
|
|
|
version = "1.10.2-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-10-08 13:26:21 +00:00
|
|
|
url = "https://github.com/ros-gbp/nodelet_core-release/archive/release/noetic/nodelet_core/1.10.2-1.tar.gz";
|
|
|
|
name = "1.10.2-1.tar.gz";
|
|
|
|
sha256 = "e0d132be009c5e023db662b72ed0ba76cb986b51f2603aee36dd15ce084ab8b6";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ nodelet nodelet-topic-tools ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Nodelet Core Metapackage'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|