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

27 lines
928 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, rcutils }:
buildRosPackage {
pname = "ros-rolling-rcpputils";
version = "2.6.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/rolling/rcpputils/2.6.0-1.tar.gz";
name = "2.6.0-1.tar.gz";
sha256 = "d67567400ce46da8658bf7a2e6c6303c27d5a2c24f452bfa0957062a52f3885f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-ros ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rcutils ];
nativeBuildInputs = [ ament-cmake ament-cmake-ros ];
meta = {
description = ''Package containing utility code for C++.'';
license = with lib.licenses; [ asl20 bsd3 ];
};
}