2024-05-10 13:12:06 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-10 13:12:06 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-core, ament-cmake-cppcheck, ament-cmake-export-dependencies, ament-cmake-lint-cmake, ament-cmake-test, ament-cmake-xmllint }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-autoware-lint-common";
|
2025-04-11 13:54:49 +00:00
|
|
|
version = "1.0.2-r1";
|
2024-05-10 13:12:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-11 13:54:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/autoware_cmake-release/archive/release/humble/autoware_lint_common/1.0.2-1.tar.gz";
|
|
|
|
name = "1.0.2-1.tar.gz";
|
|
|
|
sha256 = "262b7889eb35ff70c0697741724a0cecd9aaf7d86820c004f9abbe5e814194c9";
|
2024-05-10 13:12:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-export-dependencies ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-copyright ament-cmake-core ament-cmake-cppcheck ament-cmake-lint-cmake ament-cmake-test ament-cmake-xmllint ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-export-dependencies ament-cmake-test ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The list of commonly used linters in Autoware";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|