1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/ecl-errors/default.nix

28 lines
956 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-build, ecl-config, ecl-license }:
buildRosPackage {
pname = "ros-iron-ecl-errors";
version = "1.2.0-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/ecl_lite-release/archive/release/iron/ecl_errors/1.2.0-4.tar.gz";
name = "1.2.0-4.tar.gz";
sha256 = "b780149c871f43d48c168785d87239b229f42e42bca3021104b468d07ad16502";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ecl-build ];
propagatedBuildInputs = [ ecl-config ecl-license ];
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 ];
};
}