mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
28 lines
1,015 B
Nix
28 lines
1,015 B
Nix
![]() |
|
||
|
# Copyright 2022 Open Source Robotics Foundation
|
||
|
# 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-rolling-ecl-command-line";
|
||
|
version = "1.2.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/rolling/ecl_command_line/1.2.1-1.tar.gz";
|
||
|
name = "1.2.1-1.tar.gz";
|
||
|
sha256 = "3ec2dbd86d439dd86721cac9332f64eaf951a6ad9af2fad8da7177665d62c0e2";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|