summary refs log tree commit diff
path: root/pkgs/development/libraries/caelum/default.nix
blob: 823eac14548561c36852777c7b1c4df916b30012 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, cmake, pkgconfig, ois, ogre, boost }:

stdenv.mkDerivation rec {
  name = "caelum-0.6.1";

  src = fetchurl {
    url = "http://caelum.googlecode.com/files/${name}.tar.gz";
    sha256 = "1j995q1a88cikqrxdqsrwzm2asid51xbmkl7vn1grfrdadb15303";
  };

  buildInputs = [ ois ogre boost ];
  nativeBuildInputs = [ cmake pkgconfig ];

  enableParallelBuilding = true;

  meta = {
    description = "Add-on for the OGRE, aimed to render atmospheric effects";
    homepage = http://code.google.com/p/caelum/;
    license = stdenv.lib.licenses.lgpl21Plus;
    broken = true;
  };
}