2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-build, ecl-config, ecl-errors, ecl-license }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-ecl-io";
|
|
|
|
version = "1.0.3-r2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/yujinrobot-release/ecl_lite-release/archive/release/dashing/ecl_io/1.0.3-2.tar.gz";
|
|
|
|
name = "1.0.3-2.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "b9606f1ae10b48997260d37a70a3df5dfd0b1be5885165cab176fe66907e3917";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
buildInputs = [ ecl-build ];
|
|
|
|
propagatedBuildInputs = [ ecl-config ecl-errors ecl-license ];
|
2019-09-04 17:11:04 -04: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 ];
|
|
|
|
};
|
|
|
|
}
|