1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 07:30:25 +03:00
nix-ros-overlay/melodic/nodelet-core/default.nix
2019-12-09 23:36:28 -05:00

24 lines
737 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";
name = "1.9.16-0.tar.gz";
sha256 = "a0537935c5c1b091cf655f0a31852d72ec54b245b2577d139cd66d33332eea9b";
};
buildType = "catkin";
propagatedBuildInputs = [ nodelet nodelet-topic-tools ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Nodelet Core Metapackage'';
license = with lib.licenses; [ bsdOriginal ];
};
}