2022-06-09 18:50:37 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cppcheck }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-ament-cppcheck";
|
2024-05-24 14:00:52 +00:00
|
|
|
version = "0.12.11-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-24 14:00:52 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_cppcheck/0.12.11-1.tar.gz";
|
|
|
|
name = "0.12.11-1.tar.gz";
|
|
|
|
sha256 = "a315882e48caced56337f4c35526619922b60be805a1d7708a354e3907e44f9f";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
propagatedBuildInputs = [ cppcheck ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The ability to perform static code analysis on C/C++ code using Cppcheck
|
|
|
|
and generate xUnit test result files.";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|