1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/rcutils/default.nix

26 lines
1.2 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-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.5.2-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcutils-release/archive/release/rolling/rcutils/6.5.2-2.tar.gz";
name = "6.5.2-2.tar.gz";
sha256 = "c2781320f53828a0465dc0c0ccb4deb62a956a443e6bc5559028b7cee5f25bf6";
};
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 ];
};
}