1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/eloquent/ecl-command-line/default.nix

27 lines
1,001 B
Nix

# Copyright 2020 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-eloquent-ecl-command-line";
version = "1.0.7-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_command_line/1.0.7-1.tar.gz";
name = "1.0.7-1.tar.gz";
sha256 = "5b09789524df9dd419cf81b9cbb6f63b714f164399b5bd4d6ace28a801270f70";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}