1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 06:08:39 +03:00
nix-ros-overlay/dashing/rviz-rendering/default.nix
2019-09-09 14:55:58 -04:00

26 lines
1.3 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-cpplint, ament-cmake, ament-cmake-uncrustify, ament-cmake-gmock, ament-cmake-gtest, rviz-assimp-vendor, ament-cmake-cppcheck, rviz-ogre-vendor, eigen3-cmake-module, qt5, resource-retriever, ament-cmake-lint-cmake, ament-index-cpp, eigen }:
buildRosPackage {
pname = "ros-dashing-rviz-rendering";
version = "6.1.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rviz-release/archive/release/dashing/rviz_rendering/6.1.4-1.tar.gz";
name = "6.1.4-1.tar.gz";
sha256 = "cd9a88775269a779c24c15dd303920eb7b023daf970854191e79d9e336136e05";
};
buildType = "ament_cmake";
buildInputs = [ rviz-assimp-vendor qt5.qtbase rviz-ogre-vendor resource-retriever ament-index-cpp eigen ];
checkInputs = [ ament-cmake-uncrustify ament-cmake-gmock ament-cmake-gtest rviz-assimp-vendor ament-cmake-cppcheck ament-cmake-lint-cmake ament-cmake-cpplint ];
propagatedBuildInputs = [ rviz-assimp-vendor qt5.qtbase rviz-ogre-vendor eigen3-cmake-module resource-retriever ament-index-cpp eigen ];
nativeBuildInputs = [ eigen3-cmake-module ament-cmake ];
meta = {
description = ''Library which provides the 3D rendering functionality in rviz.'';
license = with lib.licenses; [ bsdOriginal ];
};
}