83 lines
2.7 KiB
Nix
83 lines
2.7 KiB
Nix
{ stdenv, fetchurl, cmake, pkgconfig, boost, protobuf, freeimage
|
|
, boost-build, boost_process
|
|
, xorg_sys_opengl, tbb, ogre, tinyxml-2
|
|
, libtar, glxinfo, libusb, libxslt, ruby, ignition
|
|
, pythonPackages, utillinux
|
|
|
|
# these deps are hidden; cmake doesn't catch them
|
|
, gazeboSimulator, sdformat ? gazeboSimulator.sdformat, curl, tinyxml, qt4, x11
|
|
, withIgnitionTransport ? true
|
|
, libav, withLibAvSupport ? true
|
|
, openal, withAudioSupport ? false
|
|
, withQuickBuild ? false, withHeadless ? false, withLowMemorySupport ? false
|
|
, doxygen, withDocs ? true
|
|
, bullet, withBulletEngineSupport ? false
|
|
, graphviz, withModelEditorSchematicView ? true # graphviz needed for this view
|
|
, gdal, withDigitalElevationTerrainsSupport ? true
|
|
, gts, withConstructiveSolidGeometrySupport ? true
|
|
, hdf5, withHdf5Support ? true
|
|
, version ? "7.0.0"
|
|
, src-sha256 ? "127q2g93kvmak2b6vhl13xzg56h09v14s4pki8wv7aqjv0c3whbl"
|
|
, ...
|
|
}: with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit version;
|
|
name = "gazebo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://osrf-distributions.s3.amazonaws.com/gazebo/releases/${name}.tar.bz2";
|
|
sha256 = src-sha256;
|
|
};
|
|
|
|
enableParallelBuilding = true; # gazebo needs this so bad
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_LIBDIR:PATH=lib"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include" ]
|
|
++ optional withQuickBuild [ "-DENABLE_TESTS_COMPILATION=False" ]
|
|
++ optional withLowMemorySupport [ "-DUSE_LOW_MEMORY_TESTS=True" ]
|
|
++ optional withHeadless [ "-DENABLE_SCREEN_TESTS=False" ];
|
|
|
|
buildInputs = [
|
|
#cmake pkgconfig boost protobuf
|
|
freeimage
|
|
xorg_sys_opengl
|
|
tbb
|
|
ogre
|
|
tinyxml-2
|
|
libtar
|
|
glxinfo
|
|
libusb
|
|
libxslt
|
|
ignition.math2
|
|
sdformat
|
|
pythonPackages.pyopengl
|
|
|
|
# TODO: add these hidden deps to cmake configuration & submit upstream
|
|
curl
|
|
tinyxml
|
|
x11
|
|
qt4
|
|
] ++ optional stdenv.isLinux utillinux # on Linux needs uuid/uuid.h
|
|
++ optional withDocs doxygen
|
|
++ optional withLibAvSupport libav #TODO: package rubygem-ronn and put it here
|
|
++ optional withAudioSupport openal
|
|
++ optional withBulletEngineSupport bullet
|
|
++ optional withIgnitionTransport ignition.transport
|
|
++ optional withModelEditorSchematicView graphviz
|
|
++ optional withDigitalElevationTerrainsSupport gdal
|
|
++ optional withConstructiveSolidGeometrySupport gts
|
|
++ optional withHdf5Support hdf5;
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
propagatedNativeBuildInputs = [ boost boost-build boost_process protobuf ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://gazebosim.org/;
|
|
description = "Multi-robot simulator for outdoor environments";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ pxc ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|