nix-ros-overlay/distros/humble/ament-cmake-lint-cmake/default.nix

25 lines
909 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-test, ament-lint-cmake }:
buildRosPackage {
pname = "ros-humble-ament-cmake-lint-cmake";
version = "0.12.10-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_cmake_lint_cmake/0.12.10-1.tar.gz";
name = "0.12.10-1.tar.gz";
sha256 = "c699340986e431856ee5050f80ca0f3cdcc5c5351287e1e93fc7d13d0ab2ac8e";
};
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 ];
};
}