openscenegraph: 3.6.3 -> 3.6.4
This commit is contained in:
parent
1354a2e642
commit
a7c0071717
1 changed files with 5 additions and 7 deletions
|
@ -26,14 +26,14 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "openscenegraph-${version}";
|
pname = "openscenegraph";
|
||||||
version = "3.6.3";
|
version = "3.6.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "openscenegraph";
|
owner = "openscenegraph";
|
||||||
repo = "OpenSceneGraph";
|
repo = "OpenSceneGraph";
|
||||||
rev = "d011ca4e8d83549a3688bf6bb8cd468dd9684822";
|
rev = "OpenSceneGraph-${version}";
|
||||||
sha256 = "0h32z15sa8sbq276j0iib0n707m8bs4p5ji9z2ah411446paad9q";
|
sha256 = "0x8hdbzw0b71j91fzp9cwmy9a7ava8v8wwyj8nxijq942vdx1785";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig cmake doxygen ];
|
nativeBuildInputs = [ pkgconfig cmake doxygen ];
|
||||||
|
@ -64,14 +64,12 @@ stdenv.mkDerivation rec {
|
||||||
++ lib.optionals withExamples [ fltk wxGTK ]
|
++ lib.optionals withExamples [ fltk wxGTK ]
|
||||||
;
|
;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
cmakeFlags = lib.optional (!withApps) "-DBUILD_OSG_APPLICATIONS=OFF" ++ lib.optional withExamples "-DBUILD_OSG_EXAMPLES=ON";
|
cmakeFlags = lib.optional (!withApps) "-DBUILD_OSG_APPLICATIONS=OFF" ++ lib.optional withExamples "-DBUILD_OSG_EXAMPLES=ON";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A 3D graphics toolkit";
|
description = "A 3D graphics toolkit";
|
||||||
homepage = http://www.openscenegraph.org/;
|
homepage = http://www.openscenegraph.org/;
|
||||||
maintainers = [ maintainers.raskin ];
|
maintainers = with maintainers; [ aanderse raskin ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = "OpenSceneGraph Public License - free LGPL-based license";
|
license = "OpenSceneGraph Public License - free LGPL-based license";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue