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
26 lines
722 B
Nix
26 lines
722 B
Nix
{ stdenv, fetchurl, SDL, alsaLib, cmake, fftwSinglePrec, jack2, libogg
|
|
, libsamplerate, libsndfile, pkgconfig, pulseaudio, qt4
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lmms-${version}";
|
|
version = "0.4.15";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lmms/${name}.tar.bz2";
|
|
sha256 = "02q2gbsqwk3hf9kvzz58a5bxmlb4cfr2mzy41wdvbxxdm2pcl101";
|
|
};
|
|
|
|
buildInputs = [
|
|
SDL alsaLib cmake fftwSinglePrec jack2 libogg libsamplerate
|
|
libsndfile pkgconfig pulseaudio qt4
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Linux MultiMedia Studio";
|
|
homepage = "http://lmms.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|