mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
25 lines
837 B
Nix
25 lines
837 B
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-iron-ament-pclint";
|
||
|
version = "0.14.1-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/iron/ament_pclint/0.14.1-2.tar.gz";
|
||
|
name = "0.14.1-2.tar.gz";
|
||
|
sha256 = "ba3e7d23ecfaac74abde6b5833475c6da7952dd832293f85d05999d66fb5e8f4";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The ability to perform static code analysis on C/C++ code using PC-lint
|
||
|
and generate xUnit test result files.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|