nix-ros-overlay/distros/foxy/ecl-exceptions/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

27 lines
1,006 B
Nix

# Copyright 2023 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-foxy-ecl-exceptions";
version = "1.2.0-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/foxy/ecl_exceptions/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "e7eb483073cf86cff916206e50071e201d0c044acaca0860150d39a68e5ea884";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros 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 ];
};
}