2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-test, ament-lint-cmake }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-ament-cmake-lint-cmake";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "0.17.1-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/jazzy/ament_cmake_lint_cmake/0.17.1-1.tar.gz";
|
|
|
|
name = "0.17.1-1.tar.gz";
|
|
|
|
sha256 = "bc36c978a1f295d207fa35e159844bcb6bd1e6bbe0bbd76540d557ec06677b0b";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-core ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-test ament-lint-cmake ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ament-lint-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The CMake API for ament_lint_cmake to lint CMake code using cmakelint.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|