mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
664 B
Nix
23 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-kinetic-nodelet-core";
|
||
|
version = "1.9.14";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/nodelet_core-release/archive/release/kinetic/nodelet_core/1.9.14-0.tar.gz;
|
||
|
sha256 = "c4f6f3fc7da608a13f4196b39d035cf9c9474b9eb4ba3d340cc21d811ac3f31e";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ nodelet nodelet-topic-tools ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Nodelet Core Metapackage'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|