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