forked from mirrors/nixpkgs
f6f2f38a6e
Currently, we have a 'jack' package with attrname 'jack1d' and a 'jackdbus' package with attrname 'jackaudio'. Make it consistent 'jack1' and 'jack2' in both package name and attrname. This aligns the naming with what can be found on the JACK homepage. Q: what's the difference between jack1 and jack2? A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
27 lines
758 B
Nix
27 lines
758 B
Nix
{ stdenv, fetchurl, lib, pkgconfig, alsaLib, libogg, pulseaudio ? null, jack2 ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "alsa-plugins-1.0.28";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.alsa-project.org/pub/plugins/${name}.tar.bz2"
|
|
"http://alsa.cybermirror.org/plugins/${name}.tar.bz2"
|
|
];
|
|
sha256 = "081is33afhykb4ysll8s6gh0d6nm1cglslj9ck0disbyl3qqlvs2";
|
|
};
|
|
|
|
buildInputs =
|
|
[ pkgconfig alsaLib libogg ]
|
|
++ stdenv.lib.optional (pulseaudio != null) pulseaudio
|
|
++ stdenv.lib.optional (jack2 != null) jack2;
|
|
|
|
meta = {
|
|
description = "Various plugins for ALSA";
|
|
homepage = http://alsa-project.org/;
|
|
license = "GPL2.1";
|
|
maintainers = [lib.maintainers.marcweber];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|