mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
28 lines
998 B
Nix
28 lines
998 B
Nix
![]() |
|
||
|
# Copyright 2022 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-galactic-ecl-exceptions";
|
||
|
version = "1.2.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/galactic/ecl_exceptions/1.2.0-1.tar.gz";
|
||
|
name = "1.2.0-1.tar.gz";
|
||
|
sha256 = "924a0b7b7bba234be34e9a4319d8cf841cd9db7972c83d73ec4aca6097297414";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|