mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
24 lines
844 B
Nix
24 lines
844 B
Nix
|
|
# Copyright 2024 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-humble-ament-pclint";
|
|
version = "0.12.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/humble/ament_pclint/0.12.10-1.tar.gz";
|
|
name = "0.12.10-1.tar.gz";
|
|
sha256 = "1668a8f1391320654df31888855001c9366eca661b2f990b3daac57215653fdf";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|