mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 16:40:36 +03:00
27 lines
997 B
Nix
27 lines
997 B
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# 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-jazzy-ament-cmake-cpplint";
|
||
|
version = "0.17.0-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/jazzy/ament_cmake_cpplint/0.17.0-2.tar.gz";
|
||
|
name = "0.17.0-2.tar.gz";
|
||
|
sha256 = "b5c9e5d5074aa4842b856674d8927687b2a7be9330157cfc043b0c57a4e9ee9d";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|