2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:14:51 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-build, ecl-config, ecl-errors, ecl-license }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-ecl-io";
|
|
|
|
version = "1.0.3-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/yujinrobot-release/ecl_lite-release/archive/release/eloquent/ecl_io/1.0.3-1.tar.gz";
|
|
|
|
name = "1.0.3-1.tar.gz";
|
|
|
|
sha256 = "4cd5d0a91f02f8d4b8f8e47603ea6dd6825c176c7e04f049bb5512ad9b6fe380";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:14:51 -05:00
|
|
|
buildInputs = [ ecl-build ];
|
|
|
|
propagatedBuildInputs = [ ecl-config ecl-errors ecl-license ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Most implementations (windows, posix, ...) have slightly different api for
|
|
|
|
low level input-output functions. These are gathered here and re-represented
|
|
|
|
with a cross platform set of functions.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|