2020-06-12 18:02:43 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cppcheck }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-ament-cppcheck";
|
2022-07-29 14:00:58 +00:00
|
|
|
version = "0.9.7-r1";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-07-29 14:00:58 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cppcheck/0.9.7-1.tar.gz";
|
|
|
|
name = "0.9.7-1.tar.gz";
|
|
|
|
sha256 = "6b1d0ba00aa5a8d1992ba3c9b4a80aaa9b1073d69510bd6d9cb7d18fafff5f57";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
propagatedBuildInputs = [ cppcheck ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to perform static code analysis on C/C++ code using Cppcheck
|
|
|
|
and generate xUnit test result files.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|