52f38ce5d6
Conflicts (trivial): pkgs/top-level/haskell-packages.nix
16 lines
490 B
Nix
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;
|
|
};
|
|
})
|