2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-clang-tidy, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-cmake-clang-tidy";
|
2024-11-22 13:28:00 +00:00
|
|
|
version = "0.19.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-22 13:28:00 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/rolling/ament_cmake_clang_tidy/0.19.0-1.tar.gz";
|
|
|
|
name = "0.19.0-1.tar.gz";
|
|
|
|
sha256 = "f8e62f7b5276edbe222749a9fe3050fa1c51ed68aaf0a6a88c87e2a6dc15e9be";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-core ];
|
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
|
|
|
|
propagatedBuildInputs = [ ament-clang-tidy ament-cmake-test ];
|
|
|
|
nativeBuildInputs = [ ament-clang-tidy ament-cmake-core ament-cmake-test ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The CMake API for ament_clang_tidy to lint C / C++ code using clang tidy.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|