2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, clang, python3Packages, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-clang-tidy";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.16.3-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/rolling/ament_clang_tidy/0.16.3-2.tar.gz";
|
|
|
|
name = "0.16.3-2.tar.gz";
|
|
|
|
sha256 = "ecb2f5639ed97de4f7e6bef874c3dcb0fe40dabb6a3e6c8e95ce189c4f09fc76";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ clang python3Packages.pyyaml ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to check code against style conventions using
|
|
|
|
clang-tidy and generate xUnit test result files.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|