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
25 lines
693 B
Nix
25 lines
693 B
Nix
{ stdenv, fetchurl, alsaLib, cmake, jack2, fftw, fltk13, minixml
|
|
, pkgconfig, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zynaddsubfx-${version}";
|
|
version = "2.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/zynaddsubfx/ZynAddSubFX-${version}.tar.bz2";
|
|
sha256 = "0kgmwyh4rhyqdfrdzhbzjjk2hzggkp9c4aac6sy3xv6cc1b5jjxq";
|
|
};
|
|
|
|
buildInputs = [ alsaLib jack2 fftw fltk13 minixml zlib ];
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "High quality software synthesizer";
|
|
homepage = http://zynaddsubfx.sourceforge.net;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|