1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 22:50:18 +03:00
nix-ros-overlay/eloquent/ecl-command-line/default.nix

28 lines
1,013 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-license, ament-lint-common, ament-lint-auto, ecl-build, ament-cmake-gtest }:
buildRosPackage {
pname = "ros-eloquent-ecl-command-line";
version = "1.0.4-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_command_line/1.0.4-1.tar.gz";
name = "1.0.4-1.tar.gz";
sha256 = "c114689b0b649ea51bf7507fc88ff328871de6ba65413598923a412c7fd4658d";
};
buildType = "ament_cmake";
buildInputs = [ ecl-license ecl-build ];
checkInputs = [ ament-lint-common ament-cmake-gtest ament-lint-auto ];
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 ];
};
}