nix-ros-overlay/distros/humble/ament-cppcheck/default.nix

24 lines
751 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cppcheck }:
buildRosPackage {
pname = "ros-humble-ament-cppcheck";
version = "0.12.12-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_cppcheck/0.12.12-1.tar.gz";
name = "0.12.12-1.tar.gz";
sha256 = "0b2e6a998169126c95a4733507ad1c0a0d59a7c9741351e0029d8c72fa76218a";
};
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 ];
};
}