2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ament-pclint";
|
2025-04-04 13:36:01 +00:00
|
|
|
version = "0.17.2-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-04 13:36:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/jazzy/ament_pclint/0.17.2-1.tar.gz";
|
|
|
|
name = "0.17.2-1.tar.gz";
|
|
|
|
sha256 = "cecc14fe2a7414d708f55393256ec4c5d8376b4a010bad92ec5d5c81bf935829";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The ability to perform static code analysis on C/C++ code using PC-lint
|
|
|
|
and generate xUnit test result files.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|