2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test, ament-cpplint }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ament-cmake-cpplint";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.16.3-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/rolling/ament_cmake_cpplint/0.16.3-2.tar.gz";
|
|
|
|
name = "0.16.3-2.tar.gz";
|
|
|
|
sha256 = "be933567845ada38e5b737de12c618ae0b13bd2d0d22f18b6f872580aa6e0c0d";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-core ];
|
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-test ament-cpplint ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ament-cpplint ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The CMake API for ament_cpplint to lint C / C++ code using cpplint.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|