haskell: Add alsa-core, alsa-pcm, ix-shapable, carray and sample-frame.

Conflicts (trivial):
	pkgs/top-level/haskell-packages.nix
This commit is contained in:
Petr Rockai
2013-04-18 18:33:49 +02:00
committed by Vladimír Čunát
parent c61c4f4ca3
commit 52f38ce5d6
6 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ cabal, QuickCheck, storableRecord }:
cabal.mkDerivation (self: {
pname = "sample-frame";
version = "0.0.2";
sha256 = "1k1fyslgw5vvn9a38mhp7c9j1xxf75ys010rcn2vr3pm6aj868sx";
isLibrary = true;
isExecutable = true;
buildDepends = [ QuickCheck storableRecord ];
meta = {
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Handling of samples in an (audio) signal";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})