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/foxy/ecl-utilities/default.nix

27 lines
988 B
Nix
Raw Normal View History

# Copyright 2021 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-concepts, ecl-license, ecl-mpl }:
buildRosPackage {
pname = "ros-foxy-ecl-utilities";
version = "1.2.0-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/foxy/ecl_utilities/1.2.0-1.tar.gz";
name = "1.2.0-1.tar.gz";
sha256 = "a01de5b9b42675e1f3b88b7cbdbe0a4a42ac4e6db07dd18a1a6d010af563d424";
};
buildType = "ament_cmake";
buildInputs = [ ecl-build ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ecl-concepts ecl-license ecl-mpl ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Includes various supporting tools and utilities for c++ programming.'';
license = with lib.licenses; [ bsdOriginal ];
};
}