1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/nodelet-core/default.nix

25 lines
737 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, nodelet, nodelet-topic-tools }:
2019-03-21 00:14:59 -04:00
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";
2019-03-21 00:14:59 -04:00
sha256 = "a0537935c5c1b091cf655f0a31852d72ec54b245b2577d139cd66d33332eea9b";
};
buildType = "catkin";
propagatedBuildInputs = [ nodelet nodelet-topic-tools ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Nodelet Core Metapackage'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}