2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-ament-cpplint";
|
2023-11-24 13:11:26 +00:00
|
|
|
version = "0.12.9-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-24 13:11:26 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_cpplint/0.12.9-1.tar.gz";
|
|
|
|
name = "0.12.9-1.tar.gz";
|
|
|
|
sha256 = "9b37c20fcf6e41268154f2c66222edcddbae136cbb9c4bddf5030a266804b0d7";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The ability to check code against the Google style conventions using
|
|
|
|
cpplint and generate xUnit test result files.'';
|
|
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|