2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# 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-config, ecl-errors, ecl-exceptions, ecl-license, ecl-time, ecl-utilities }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-ecl-threads";
|
|
|
|
version = "1.2.1-r4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/ecl_core-release/archive/release/iron/ecl_threads/1.2.1-4.tar.gz";
|
|
|
|
name = "1.2.1-4.tar.gz";
|
|
|
|
sha256 = "4336c7db7f9196887bdc559a0e7ae2e2db645b171e068327f04b3f6b11e2950e";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ ecl-build ecl-concepts ecl-config ecl-errors ecl-exceptions ecl-license ecl-time ecl-utilities ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "This package provides the c++ extensions for a variety of threaded
|
2023-06-19 17:15:23 -04:00
|
|
|
programming tools. These are usually different on different
|
|
|
|
platforms, so the architecture for a cross-platform framework
|
2024-03-23 14:09:26 +00:00
|
|
|
is also implemented.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|