adding alsa-plugin and patching alsa so that you can tell it about additional plugins

svn path=/nixpkgs/trunk/; revision=17316
This commit is contained in:
Marc Weber
2009-09-20 21:54:23 +00:00
parent 88e66ae7f4
commit 862fcb0252
5 changed files with 100 additions and 0 deletions
@@ -0,0 +1,24 @@
args: with args;
stdenv.mkDerivation {
name = "alsa-plugins-1.0.19";
src = fetchurl {
url = ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-1.0.19.tar.bz2;
sha256 = "000iqwlz93ykl0w19hw4qjh3gcw7f45ykmi91cw2m7dg4iy0igk7";
};
# TODO make this customizable
buildInputs = [pkgconfig alsaLib pulseaudio];
meta = {
description = "plugins for alsa eg conneckt jack, pluseaudio applications easily to the daemons using alsa devices";
longDescription = "
use it like this: export ALSA_PLUGIN_DIRS=$(nix-build -A alsaPlugins)/lib/alsa-lib
";
homepage = http://alsa-project.org;
license = "GPL2.1";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}