mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-14 11:38:39 +03:00
26 lines
946 B
Nix
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 ];
|
|
};
|
|
}
|