summary refs log tree commit diff
path: root/pkgs/development/libraries/openscenegraph/default.nix
blob: 01993fa1cd87692f1de509fd50189bbaf226fc9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
x@{builderDefsPackage
  , cmake, giflib, libjpeg, libtiff, lib3ds, freetype, libpng
  , coin3d, jasper, gdal, xproto, libX11, libXmu, freeglut, mesa
  , doxygen, ffmpeg, xineLib, unzip, zlib, openal, libxml2
  , curl, a52dec, faad2, gdk_pixbuf
  , ...}:
builderDefsPackage
(a :
let
  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
    [];

  buildInputs = map (n: builtins.getAttr n x)
    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
  sourceInfo = rec {
    baseName="OpenSceneGraph";
    version="3.0.1";
    name="${baseName}-${version}";
    url="http://www.openscenegraph.org/downloads/stable_releases/${name}/source/${name}.zip";
    hash="15l23mxv93mw6wkc90x52jhwxh7r3d7lahwdsv3jfnha9dbh648c";
  };
in
rec {
  src = a.fetchurl {
    url = sourceInfo.url;
    sha256 = sourceInfo.hash;
  };

  inherit (sourceInfo) name version;
  inherit buildInputs;

  /* doConfigure should be removed if not needed */
  phaseNames = ["setVars" "addInputs" "doUnpack" "doPatch" "doCmake" "doMakeInstall"];

  patches = [ ./xine.patch ]; # http://forum.openscenegraph.org/viewtopic.php?t=9659

  cmakeFlags = [
    "-D MATH_LIBRARY="
  ];

  setVars = a.noDepEntry ''
    export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -D__STDC_CONSTANT_MACROS=1"
  '';

  meta = {
    description = "A 3D graphics toolkit";
    maintainers = with a.lib.maintainers;
    [
      raskin
    ];
    platforms = with a.lib.platforms;
      linux;
    license = "OpenSceneGraph Public License - free LGPL-based license";
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://www.openscenegraph.org/projects/osg/wiki/Downloads";
    };
  };
}) x