1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/visualization-osg/default.nix

24 lines
894 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, osg-interactive-markers, osg-markers, osg-utils }:
buildRosPackage {
pname = "ros-melodic-visualization-osg";
version = "1.0.2-r2";
src = fetchurl {
url = "https://github.com/uji-ros-pkg/visualization_osg-release/archive/release/melodic/visualization_osg/1.0.2-2.tar.gz";
name = "1.0.2-2.tar.gz";
sha256 = "49cee62d712e9d538aaac8ce03c2222705074e11365f6c89d108dfb2decbf164";
};
buildType = "catkin";
propagatedBuildInputs = [ osg-interactive-markers osg-markers osg-utils ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''visualization_osg is a metapackage providing support for visualization of geometry using the OpenSceneGraph rendering engine.'';
license = with lib.licenses; [ bsdOriginal ];
};
}