1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/ament-cppcheck/default.nix

24 lines
743 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cppcheck }:
buildRosPackage {
pname = "ros-foxy-ament-cppcheck";
version = "0.9.7-r1";
src = fetchurl {
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";
};
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 ];
};
}