1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-08 19:34:41 +03:00
nix-ros-overlay/distros/noetic/nodelet-core/default.nix

25 lines
738 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, nodelet, nodelet-topic-tools }:
buildRosPackage {
pname = "ros-noetic-nodelet-core";
version = "1.10.2-r1";
src = fetchurl {
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";
};
buildType = "catkin";
propagatedBuildInputs = [ nodelet nodelet-topic-tools ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Nodelet Core Metapackage'';
license = with lib.licenses; [ bsdOriginal ];
};
}