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 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ecl-license, ecl-config, ecl-build, ament-cmake-ros }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-ecl-errors";
|
|
|
|
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_errors/1.0.3-2.tar.gz";
|
|
|
|
name = "1.0.3-2.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "bf71bcad995c923e8fc368c881a1f4a572d94b71045dd7819bb4cc6a7cb1d077";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ecl-license ecl-config ecl-build ];
|
|
|
|
propagatedBuildInputs = [ ecl-license ecl-config ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This library provides lean and mean error mechanisms.
|
|
|
|
It includes c style error functions as well as a few
|
|
|
|
useful macros. For higher level mechanisms,
|
|
|
|
refer to ecl_exceptions.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|