summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/lambdacube-engine/default.nix
blob: f3c9a8af4eab44fbeb3ab39d4352c87f6b5e079e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, binary, bitmap, bytestringTrie, filepath, mtl, OpenGLRaw
, stbImage, uulib, vect, vector, vectorAlgorithms, xml, zipArchive
}:

cabal.mkDerivation (self: {
  pname = "lambdacube-engine";
  version = "0.2.4";
  sha256 = "1xdp10nylndmfw16dywqrxj30g99rf9qbcx5qiglvzm1c1kxid3f";
  buildDepends = [
    binary bitmap bytestringTrie filepath mtl OpenGLRaw stbImage uulib
    vect vector vectorAlgorithms xml zipArchive
  ];
  meta = {
    homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine";
    description = "3D rendering engine written entirely in Haskell";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})