mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
981 B
Nix
27 lines
981 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-lint-common, ament-cmake-gtest, ecl-build, ecl-license, ament-cmake-ros, ament-lint-auto }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-ecl-config";
|
|
version = "1.0.3-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_lite-release/archive/release/dashing/ecl_config/1.0.3-2.tar.gz";
|
|
name = "1.0.3-2.tar.gz";
|
|
sha256 = "6b401eb279f56bb057a4a93202b028f77cd1701212cc4e73b23d43ff6bfd2707";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ecl-license ecl-build ];
|
|
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
|
|
propagatedBuildInputs = [ ecl-license ecl-build ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''These tools inspect and describe your system with macros, types
|
|
and functions.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|