openscenegraph: use stdenv

This replaces use of `builderDefsPackage`. Also minor cleanups.
This commit is contained in:
Robert Helgesson 2015-12-30 00:06:34 +01:00
parent abf836b066
commit 7ce3f6f976

View File

@ -1,60 +1,36 @@
x@{builderDefsPackage { stdenv, fetchurl, cmake, giflib, libjpeg, libtiff, lib3ds, freetype
, cmake, giflib, libjpeg, libtiff, lib3ds, freetype, libpng , libpng, coin3d, jasper, gdal_1_11, xproto, libX11, libXmu
, coin3d, jasper, gdal_1_11, xproto, libX11, libXmu, freeglut, mesa , freeglut, mesa, doxygen, ffmpeg, xineLib, unzip, zlib, openal
, doxygen, ffmpeg, xineLib, unzip, zlib, openal, libxml2 , libxml2, curl, a52dec, faad2, gdk_pixbuf, pkgconfig, kbproto, SDL
, curl, a52dec, faad2, gdk_pixbuf, pkgconfig, kbproto, SDL , qt4, poppler, librsvg, gtk }:
, qt4, poppler, librsvg, gtk
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x) stdenv.mkDerivation rec {
(builtins.attrNames (builtins.removeAttrs x helperArgNames)); name = "openscenegraph-${version}";
sourceInfo = rec { version = "3.2.1";
baseName="OpenSceneGraph";
version="3.2.1"; src = fetchurl {
name="${baseName}-${version}"; url = "http://trac.openscenegraph.org/downloads/developer_releases/${name}.zip";
url="http://trac.openscenegraph.org/downloads/developer_releases/${name}.zip"; sha256 = "0v9y1gxb16y0mj994jd0mhcz32flhv2r6kc01xdqb4817lk75bnr";
hash="0v9y1gxb16y0mj994jd0mhcz32flhv2r6kc01xdqb4817lk75bnr";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
}; };
inherit (sourceInfo) name version; buildInputs = [
inherit buildInputs; cmake giflib libjpeg libtiff lib3ds freetype libpng coin3d jasper
gdal_1_11 xproto libX11 libXmu freeglut mesa doxygen ffmpeg
/* doConfigure should be removed if not needed */ xineLib unzip zlib openal libxml2 curl a52dec faad2 gdk_pixbuf
phaseNames = ["setVars" "addInputs" "doUnpack" "doPatch" "doCmake" "doMakeInstall"]; pkgconfig kbproto SDL qt4 poppler librsvg gtk
cmakeFlags = [
"-D MATH_LIBRARY="
]; ];
setVars = a.noDepEntry '' cmakeFlags = [
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -D__STDC_CONSTANT_MACROS=1" "-DMATH_LIBRARY="
''; "-DCMAKE_C_FLAGS=-D__STDC_CONSTANT_MACROS=1"
"-DCMAKE_CXX_FLAGS=-D__STDC_CONSTANT_MACROS=1"
];
meta = { meta = with stdenv.lib; {
description = "A 3D graphics toolkit"; description = "A 3D graphics toolkit";
maintainers = with a.lib.maintainers; homepage = http://www.openscenegraph.org/;
[ maintainers = [ maintainers.raskin ];
raskin platforms = platforms.linux;
];
platforms = with a.lib.platforms;
linux;
license = "OpenSceneGraph Public License - free LGPL-based license"; license = "OpenSceneGraph Public License - free LGPL-based license";
}; };
passthru = { }
updateInfo = {
downloadPage = "http://www.openscenegraph.org/projects/osg/wiki/Downloads";
};
};
}) x