2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:14:51 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test, ament-pclint }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-ament-cmake-pclint";
|
2020-12-11 13:16:21 +00:00
|
|
|
version = "0.8.2-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-11 13:16:21 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/eloquent/ament_cmake_pclint/0.8.2-1.tar.gz";
|
|
|
|
name = "0.8.2-1.tar.gz";
|
|
|
|
sha256 = "69690d174d32cd66fcf363dc92dba7f14c25fa34c6c1959fa383781be8e56bd6";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:14:51 -05:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake-test ament-pclint ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The CMake API for ament_pclint to perform static code analysis on C/C++
|
|
|
|
code using PCLint.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|