2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, ament-cmake-gtest, ament-cmake-pytest, ament-cmake-ros, ament-lint-auto, ament-lint-common, launch, launch-testing, launch-testing-ament-cmake, mimick-vendor, osrf-testing-tools-cpp, performance-test-fixture, python3Packages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-rcutils";
|
2024-10-04 13:25:33 +00:00
|
|
|
version = "6.7.2-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-04 13:25:33 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rcutils-release/archive/release/jazzy/rcutils/6.7.2-1.tar.gz";
|
|
|
|
name = "6.7.2-1.tar.gz";
|
|
|
|
sha256 = "cd6124a05d6ff0c120744106cb62c85f8b6535714d44180eb988a0b62525dfb9";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros python3Packages.empy ];
|
|
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing launch-testing-ament-cmake mimick-vendor osrf-testing-tools-cpp performance-test-fixture ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros python3Packages.empy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Package containing various utility types and functions for C";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|