1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-25 00:05:33 +03:00
nix-ros-overlay/melodic/nodelet-core/default.nix
2019-03-21 00:14:59 -04:00

22 lines
664 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, nodelet, nodelet-topic-tools }:
buildRosPackage {
pname = "ros-melodic-nodelet-core";
version = "1.9.16";
src = fetchurl {
url = https://github.com/ros-gbp/nodelet_core-release/archive/release/melodic/nodelet_core/1.9.16-0.tar.gz;
sha256 = "a0537935c5c1b091cf655f0a31852d72ec54b245b2577d139cd66d33332eea9b";
};
propagatedBuildInputs = [ nodelet nodelet-topic-tools ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Nodelet Core Metapackage'';
#license = lib.licenses.BSD;
};
}