# Copyright 2020 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-build, ecl-config, ecl-errors, ecl-license }: buildRosPackage { pname = "ros-eloquent-ecl-exceptions"; version = "1.0.7-r1"; src = fetchurl { url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_exceptions/1.0.7-1.tar.gz"; name = "1.0.7-1.tar.gz"; sha256 = "47dac64500a6788380be6d479bcb6576c61ad3f48067a8ce0855bf7c50d5b167"; }; buildType = "ament_cmake"; buildInputs = [ ecl-build ]; propagatedBuildInputs = [ ecl-config ecl-errors ecl-license ]; nativeBuildInputs = [ ament-cmake-ros ]; meta = { description = ''Template based exceptions - these are simple and practical and avoid the proliferation of exception types. Although not syntatactically ideal, it is convenient and eminently practical.''; license = with lib.licenses; [ bsdOriginal ]; }; }