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-cmake-copyright, ament-cmake-core, ament-cmake-cppcheck, ament-cmake-cpplint, ament-cmake-export-dependencies, ament-cmake-flake8, ament-cmake-lint-cmake, ament-cmake-pep257, ament-cmake-uncrustify, ament-cmake-xmllint }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-ament-lint-common";
|
2024-02-02 13:15:52 +00:00
|
|
|
version = "0.12.10-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-02 13:15:52 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_lint_common/0.12.10-1.tar.gz";
|
|
|
|
name = "0.12.10-1.tar.gz";
|
|
|
|
sha256 = "0ffbeab67d14b6b5985ebb3fa19f498ad518006e078ae4c6a325da3fb6c70d3d";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake-export-dependencies ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ ament-cmake-copyright ament-cmake-core ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-flake8 ament-cmake-lint-cmake ament-cmake-pep257 ament-cmake-uncrustify ament-cmake-xmllint ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-export-dependencies ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The list of commonly used linters in the ament build system in CMake.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|