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

29 lines
964 B
Nix
Raw Normal View History

# 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-rolling-ecl-errors";
version = "1.2.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/ecl_lite-release/archive/release/rolling/ecl_errors/1.2.0-3.tar.gz";
name = "1.2.0-3.tar.gz";
sha256 = "5c4e4297ba1177ba98d5ddc96a1c688662bede6f06fe9369670a4665a3eea1ea";
};
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 ];
};
}