2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-07-26 13:34:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-cppcheck, ament-cmake-cpplint, ament-cmake-flake8, ament-cmake-gen-version-h, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-pep257, ament-cmake-ros, ament-cmake-uncrustify, ament-cmake-xmllint, rcutils }:
|
2023-06-19 17:15:23 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-rcpputils";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "2.6.4-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/iron/rcpputils/2.6.4-1.tar.gz";
|
|
|
|
name = "2.6.4-1.tar.gz";
|
|
|
|
sha256 = "bfb7f9188ded75cca3472394be716fb991a3b06d5630684dc7aa652823439b15";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-07-26 13:34:25 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-gen-version-h ament-cmake-ros ];
|
2024-02-16 13:29:45 +00:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-flake8 ament-cmake-gtest ament-cmake-lint-cmake ament-cmake-pep257 ament-cmake-uncrustify ament-cmake-xmllint ];
|
2023-06-19 17:15:23 -04:00
|
|
|
propagatedBuildInputs = [ rcutils ];
|
2024-07-26 13:34:25 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-gen-version-h ament-cmake-ros ];
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Package containing utility code for C++.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ asl20 bsd3 ];
|
|
|
|
};
|
|
|
|
}
|