mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
540966025d
Add package haskell-lambdacube-engine-0.2.4 and haskell-vect-0.4.7.
20 lines
671 B
Nix
20 lines
671 B
Nix
{ 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;
|
|
};
|
|
})
|