mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
812 B
Nix
23 lines
812 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, arduino, rosserial-msgs, message-generation, message-runtime, rospy, rosserial-client }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-rosserial-arduino";
|
|
version = "0.7.7";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/rosserial-release/archive/release/kinetic/rosserial_arduino/0.7.7-0.tar.gz;
|
|
sha256 = "d395dc434acca8547bd966ca8428a28bd147333be5f7f3e02b251c5eb1ba1af8";
|
|
};
|
|
|
|
buildInputs = [ message-generation ];
|
|
propagatedBuildInputs = [ rosserial-client message-runtime rospy arduino rosserial-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''rosserial for Arduino/AVR platforms.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|