1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/rcutils/default.nix

25 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2022 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-humble-rcutils";
version = "5.1.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcutils-release/archive/release/humble/rcutils/5.1.1-2.tar.gz";
name = "5.1.1-2.tar.gz";
sha256 = "cd67e8e810dafe93040368fd9b25a844bc80a4cd158d828fab94edaa9482cd29";
};
buildType = "ament_cmake";
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 ];
};
}