mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 08:31:07 +03:00
23 lines
718 B
Nix
23 lines
718 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, rospy, catkin, rosserial-msgs, rosserial-client }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-rosserial-embeddedlinux";
|
||
|
version = "0.8.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/rosserial-release/archive/release/melodic/rosserial_embeddedlinux/0.8.0-0.tar.gz;
|
||
|
sha256 = "3834be581ac1ed6d71d9481ec8fdb9818be429b348ebcbfa1dd2311faf4bab1b";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rosserial-msgs rospy ];
|
||
|
nativeBuildInputs = [ catkin rosserial-client ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''rosserial for embedded Linux enviroments'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|