mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
806 B
Nix
25 lines
806 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, ecl-license }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-ecl-command-line";
|
|
version = "0.62.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/melodic/ecl_command_line/0.62.2-0.tar.gz";
|
|
name = "0.62.2-0.tar.gz";
|
|
sha256 = "db3031f9d20cc04364f267a0cc028ea9b86730a1679d5ff6fc7023409ebde7b7";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ ecl-license ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
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 ];
|
|
};
|
|
}
|