2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, ecl-build, ecl-license }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ecl-command-line";
|
|
|
|
version = "1.2.1-r5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/ecl_core-release/archive/release/jazzy/ecl_command_line/1.2.1-5.tar.gz";
|
|
|
|
name = "1.2.1-5.tar.gz";
|
|
|
|
sha256 = "b99371a2892fd00637d3f098a665d17de2477dfde03a9d0df48f6c752a61d444";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ecl-build ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ ecl-license ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Embeds the TCLAP library inside the ecl. This is a very convenient
|
|
|
|
command line parser in templatised c++.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|