56d29bcaa5
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ogre/versions
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ fetchurl, stdenv, lib
|
|
, cmake, libGLU_combined
|
|
, freetype, freeimage, zziplib, xorgproto, libXrandr
|
|
, libXaw, freeglut, libXt, libpng, boost, ois
|
|
, libX11, libXmu, libSM, pkgconfig
|
|
, libXxf86vm, libICE
|
|
, unzip
|
|
, libXrender
|
|
, withNvidiaCg ? false, nvidia_cg_toolkit
|
|
, withSamples ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ogre-${version}";
|
|
version = "1.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/OGRECave/ogre/archive/v${version}.zip";
|
|
sha256 = "1hkkg5prixppiq1p5jz7wz1npm5s7kwm1s86079280waccvr2v6x";
|
|
};
|
|
|
|
cmakeFlags = [ "-DOGRE_BUILD_SAMPLES=${toString withSamples}" ]
|
|
++ map (x: "-DOGRE_BUILD_PLUGIN_${x}=on")
|
|
([ "BSP" "OCTREE" "PCZ" "PFX" ] ++ lib.optional withNvidiaCg "CG")
|
|
++ map (x: "-DOGRE_BUILD_RENDERSYSTEM_${x}=on") [ "GL" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs =
|
|
[ cmake libGLU_combined
|
|
freetype freeimage zziplib xorgproto libXrandr
|
|
libXaw freeglut libXt libpng boost ois
|
|
libX11 libXmu libSM pkgconfig
|
|
libXxf86vm libICE
|
|
libXrender
|
|
] ++ lib.optional withNvidiaCg nvidia_cg_toolkit;
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
meta = {
|
|
description = "A 3D engine";
|
|
homepage = https://www.ogre3d.org/;
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
}
|