1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/serial-utils/default.nix

24 lines
702 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, boost, serial }:
buildRosPackage {
pname = "ros-kinetic-serial-utils";
version = "0.1.0";
src = fetchurl {
url = https://github.com/wjwwood/serial_utils-release/archive/release/kinetic/serial_utils/0.1.0-0.tar.gz;
sha256 = "907e265f1c308e7fa0c6c70405ec9b279af540a0213a64707302019845d85256";
};
buildInputs = [ serial boost ];
propagatedBuildInputs = [ serial boost ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''A package which adds useful additions to the serial package.'';
#license = lib.licenses.BSD;
};
}