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/rcutils/default.nix

25 lines
1.2 KiB
Nix

# Copyright 2025 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-rolling-rcutils";
version = "6.9.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcutils-release/archive/release/rolling/rcutils/6.9.3-1.tar.gz";
name = "6.9.3-1.tar.gz";
sha256 = "a5f2f183dce24901750b36ab1391bf569f32450448b008e8c39161c0876a7b2d";
};
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 ];
};
}