2019-09-04 17:11:04 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test, ament-cppcheck }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-ament-cmake-cppcheck";
|
2020-07-17 13:18:57 +00:00
|
|
|
version = "0.7.12-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-07-17 13:18:57 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/dashing/ament_cmake_cppcheck/0.7.12-1.tar.gz";
|
|
|
|
name = "0.7.12-1.tar.gz";
|
|
|
|
sha256 = "4132aa04790ccf12a29b7ca01ca33b40738414de8e2dc7f43f20981f83babef9";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-core ament-cmake-test ament-cppcheck ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The CMake API for ament_cppcheck to perform static code analysis on C/C++
|
|
|
|
code using Cppcheck.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|