# Copyright 2024 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, clang, python3Packages, pythonPackages }: buildRosPackage { pname = "ros-iron-ament-clang-tidy"; version = "0.14.4-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/iron/ament_clang_tidy/0.14.4-1.tar.gz"; name = "0.14.4-1.tar.gz"; sha256 = "c8fb4641c2dd74153b2bd0e999be6e55540aef06cbd84031f4721689eadfcbf2"; }; 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 ]; }; }