9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
77 lines
2.6 KiB
Nix
77 lines
2.6 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, doxygen,
|
|
libX11, libXinerama, libXrandr, libGLU, libGL,
|
|
glib, ilmbase, libxml2, pcre, zlib,
|
|
AGL, Carbon, Cocoa, Foundation,
|
|
jpegSupport ? true, libjpeg,
|
|
exrSupport ? false, openexr,
|
|
gifSupport ? true, giflib,
|
|
pngSupport ? true, libpng,
|
|
tiffSupport ? true, libtiff,
|
|
gdalSupport ? false, gdal,
|
|
curlSupport ? true, curl,
|
|
colladaSupport ? false, opencollada,
|
|
opencascadeSupport ? false, opencascade,
|
|
ffmpegSupport ? false, ffmpeg_3,
|
|
nvttSupport ? false, nvidia-texture-tools,
|
|
freetypeSupport ? true, freetype,
|
|
svgSupport ? false, librsvg,
|
|
pdfSupport ? false, poppler,
|
|
vncSupport ? false, libvncserver,
|
|
lasSupport ? false, libLAS,
|
|
luaSupport ? false, lua,
|
|
sdlSupport ? false, SDL2,
|
|
restSupport ? false, asio, boost,
|
|
withApps ? false,
|
|
withExamples ? false, fltk, wxGTK,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openscenegraph";
|
|
version = "3.6.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openscenegraph";
|
|
repo = "OpenSceneGraph";
|
|
rev = "OpenSceneGraph-${version}";
|
|
sha256 = "0x8hdbzw0b71j91fzp9cwmy9a7ava8v8wwyj8nxijq942vdx1785";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake doxygen ];
|
|
|
|
buildInputs = [
|
|
libX11 libXinerama libXrandr libGLU libGL
|
|
glib ilmbase libxml2 pcre zlib
|
|
] ++ lib.optional jpegSupport libjpeg
|
|
++ lib.optional exrSupport openexr
|
|
++ lib.optional gifSupport giflib
|
|
++ lib.optional pngSupport libpng
|
|
++ lib.optional tiffSupport libtiff
|
|
++ lib.optional gdalSupport gdal
|
|
++ lib.optional curlSupport curl
|
|
++ lib.optional colladaSupport opencollada
|
|
++ lib.optional opencascadeSupport opencascade
|
|
++ lib.optional ffmpegSupport ffmpeg_3
|
|
++ lib.optional nvttSupport nvidia-texture-tools
|
|
++ lib.optional freetypeSupport freetype
|
|
++ lib.optional svgSupport librsvg
|
|
++ lib.optional pdfSupport poppler
|
|
++ lib.optional vncSupport libvncserver
|
|
++ lib.optional lasSupport libLAS
|
|
++ lib.optional luaSupport lua
|
|
++ lib.optional sdlSupport SDL2
|
|
++ lib.optionals restSupport [ asio boost ]
|
|
++ lib.optionals withExamples [ fltk wxGTK ]
|
|
++ lib.optionals stdenv.isDarwin [ AGL Carbon Cocoa Foundation ]
|
|
;
|
|
|
|
cmakeFlags = lib.optional (!withApps) "-DBUILD_OSG_APPLICATIONS=OFF" ++ lib.optional withExamples "-DBUILD_OSG_EXAMPLES=ON";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A 3D graphics toolkit";
|
|
homepage = "http://www.openscenegraph.org/";
|
|
maintainers = with maintainers; [ aanderse raskin ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = "OpenSceneGraph Public License - free LGPL-based license";
|
|
};
|
|
}
|