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