nixpkgs/pkgs/development/libraries/haskell/alsa-core/default.nix
Petr Rockai 52f38ce5d6 haskell: Add alsa-core, alsa-pcm, ix-shapable, carray and sample-frame.
Conflicts (trivial):
	pkgs/top-level/haskell-packages.nix
2013-05-18 13:35:14 +02:00

16 lines
490 B
Nix

{ cabal, alsaLib, extensibleExceptions }:
cabal.mkDerivation (self: {
pname = "alsa-core";
version = "0.5.0.1";
sha256 = "1avh4a419h9d2zsslg6j8hm87ppgsgqafz8ll037rk2yy1g4jl7b";
buildDepends = [ extensibleExceptions ];
pkgconfigDepends = [ alsaLib ];
meta = {
homepage = "http://www.haskell.org/haskellwiki/ALSA";
description = "Binding to the ALSA Library API (Exceptions)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})