mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
26 lines
1.2 KiB
Nix
26 lines
1.2 KiB
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-cppcheck, ament-cmake-cpplint, ament-cmake-flake8, ament-cmake-gtest, ament-cmake-lint-cmake, ament-cmake-pep257, ament-cmake-ros, ament-cmake-uncrustify, ament-cmake-xmllint, rcutils }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-rcpputils";
|
|
version = "2.10.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/rolling/rcpputils/2.10.0-1.tar.gz";
|
|
name = "2.10.0-1.tar.gz";
|
|
sha256 = "407b184d8a423a62d5eaaacb2f64e9d64bd1c424e6ddd0a290cf91333f7ee1c2";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ament-cmake-ros ];
|
|
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 ];
|
|
propagatedBuildInputs = [ rcutils ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Package containing utility code for C++.'';
|
|
license = with lib.licenses; [ asl20 bsd3 ];
|
|
};
|
|
}
|