mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-21 06:38:40 +03:00
27 lines
1,001 B
Nix
27 lines
1,001 B
Nix
|
|
# Copyright 2019 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.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-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 ];
|
|
};
|
|
}
|