nix-ros-overlay/distros/foxy/ament-cmake-clang-format/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1 KiB
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test }:
buildRosPackage {
pname = "ros-foxy-ament-cmake-clang-format";
version = "0.9.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_cmake_clang_format/0.9.8-1.tar.gz";
name = "0.9.8-1.tar.gz";
sha256 = "fbb836cedbba53ae15331a7b3241e5168a592e89d0d406b16551bde19c5dd571";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-core ];
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
propagatedBuildInputs = [ ament-clang-format ament-cmake-test ];
nativeBuildInputs = [ ament-clang-format ament-cmake-core ament-cmake-test ];
meta = {
description = ''The CMake API for ament_clang_format to lint C / C++ code using clang format.'';
license = with lib.licenses; [ asl20 ];
};
}