mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
867 B
Nix
26 lines
867 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ecl-license, catkin, ecl-config }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-ecl-errors";
|
|
version = "0.61.6";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/yujinrobot-release/ecl_lite-release/archive/release/kinetic/ecl_errors/0.61.6-0.tar.gz;
|
|
sha256 = "359b4f40b84ab9145b0601c720b71216c67bc5505f449344b02f52ce7301aeb9";
|
|
};
|
|
|
|
buildInputs = [ ecl-license ecl-config ];
|
|
propagatedBuildInputs = [ ecl-license ecl-config ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
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 = lib.licenses.BSD;
|
|
};
|
|
}
|