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

26 lines
946 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, geometry-msgs, ouxt-lint-common, rclcpp, std-msgs, visualization-msgs }:
buildRosPackage {
pname = "ros-foxy-fluent-rviz";
version = "0.0.3-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/fluent_rviz-release/archive/release/foxy/fluent_rviz/0.0.3-3.tar.gz";
name = "0.0.3-3.tar.gz";
sha256 = "e3f3ecfeedfe1b1123ef79cd67577a226d680e2a28af3246b5863106d619104e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto ];
checkInputs = [ ament-lint-auto ouxt-lint-common ];
propagatedBuildInputs = [ geometry-msgs rclcpp std-msgs visualization-msgs ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = ''A library which makes Rviz fluent. Powered by C++17'';
license = with lib.licenses; [ asl20 ];
};
}