1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/ecl-streams/default.nix

28 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2024 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-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/ecl_core-release/archive/release/rolling/ecl_streams/1.2.1-4.tar.gz";
name = "1.2.1-4.tar.gz";
sha256 = "c3b1d7f7a3a6b97bac4245bdee8526712403f5b882e78ac3b90ab1a36742cfb6";
};
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 ];
};
}