nix-ros-overlay/distros/foxy/ament-uncrustify/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

24 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 ];
};
}