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/rolling/ecl-streams/default.nix

28 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2023 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-converters, ecl-devices, ecl-errors, ecl-license, ecl-time, ecl-type-traits }:
buildRosPackage {
pname = "ros-rolling-ecl-streams";
version = "1.2.1-r1";
src = fetchurl {
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/rolling/ecl_streams/1.2.1-1.tar.gz";
name = "1.2.1-1.tar.gz";
sha256 = "7d1814038149305c75bad03d2c4acaebff34e7cfa8ec95788bd755abde96d036";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros ecl-build ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ecl-concepts ecl-converters ecl-devices ecl-errors ecl-license ecl-time ecl-type-traits ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''These are lightweight text streaming classes that connect to standardised
ecl type devices.'';
license = with lib.licenses; [ bsdOriginal ];
};
}