# 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.6-r1"; src = fetchurl { url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_exceptions/1.0.6-1.tar.gz"; name = "1.0.6-1.tar.gz"; sha256 = "185084a09c7aedb5dbbecb5ff3cabfa48068e04226fec2e09d6fc689f5c75aa9"; }; 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 ]; }; }