nixpkgs/pkgs/development/libraries/haskell/OpenAL/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

17 lines
562 B
Nix

{ cabal, ObjectName, openal, StateVar, Tensor }:
cabal.mkDerivation (self: {
pname = "OpenAL";
version = "1.4.0.2";
sha256 = "19q4pd5i2w330qh895z0cgim4m4f4gxqf4ya1192fchqmgcz1svz";
buildDepends = [ ObjectName StateVar Tensor ];
extraLibraries = [ openal ];
meta = {
homepage = "http://connect.creativelabs.com/openal/";
description = "A binding to the OpenAL cross-platform 3D audio API";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})