2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, ObjectName, openal, StateVar, Tensor }:
|
2009-04-19 18:26:27 +02:00
|
|
|
|
2011-08-15 13:27:02 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-19 18:26:27 +02:00
|
|
|
pname = "OpenAL";
|
2012-03-24 11:21:48 +01:00
|
|
|
version = "1.4.0.1";
|
|
|
|
sha256 = "180f84sjakhd1b8h5n3l92by2wmic20n6ax0z5fi3fvk9w73khyv";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ ObjectName StateVar Tensor ];
|
2011-08-23 12:35:49 +02:00
|
|
|
extraLibraries = [ openal ];
|
2009-04-19 18:26:27 +02:00
|
|
|
meta = {
|
2011-08-08 00:00:08 +02:00
|
|
|
homepage = "http://connect.creativelabs.com/openal/";
|
2009-04-19 18:26:27 +02:00
|
|
|
description = "A binding to the OpenAL cross-platform 3D audio API";
|
2011-08-08 00:00:08 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-19 18:26:27 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|