2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# 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-jazzy-ament-clang-tidy";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "0.17.1-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/jazzy/ament_clang_tidy/0.17.1-1.tar.gz";
|
|
|
|
name = "0.17.1-1.tar.gz";
|
|
|
|
sha256 = "7fef0327244f765d49016adc66d13b5815b71fd91f82628891d7bb319a0db2f9";
|
2024-05-24 14:00:52 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|