2013-05-18 19:32:44 +02:00
|
|
|
{ cabal, alsaCore, alsaLib, extensibleExceptions, sampleFrame
|
2013-04-18 18:33:49 +02:00
|
|
|
, storableRecord
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "alsa-pcm";
|
2014-03-15 09:26:00 +01:00
|
|
|
version = "0.6.0.1";
|
|
|
|
sha256 = "0gnq4p172sqmlks6aykzr5l2qx2shrs2fypcvs4g56c9zpk3c3ax";
|
2013-04-18 18:33:49 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
alsaCore extensibleExceptions sampleFrame storableRecord
|
|
|
|
];
|
|
|
|
pkgconfigDepends = [ alsaLib ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.haskell.org/haskellwiki/ALSA";
|
|
|
|
description = "Binding to the ALSA Library API (PCM audio)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2013-12-10 23:20:23 +01:00
|
|
|
platforms = self.stdenv.lib.platforms.linux;
|
2013-04-18 18:33:49 +02:00
|
|
|
};
|
|
|
|
})
|