mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-21 22:50:18 +03:00
25 lines
761 B
Nix
25 lines
761 B
Nix
![]() |
|
||
|
# Copyright 2023 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, uncrustify-vendor }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-foxy-ament-uncrustify";
|
||
|
version = "0.9.8-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/foxy/ament_uncrustify/0.9.8-1.tar.gz";
|
||
|
name = "0.9.8-1.tar.gz";
|
||
|
sha256 = "d7cefef4a8b4217b71ec9ae0ce7ac157d327888d1b3726848801a4bffcad9316";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
propagatedBuildInputs = [ uncrustify-vendor ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The ability to check code against style conventions using uncrustify
|
||
|
and generate xUnit test result files.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|