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
851 B
Nix
27 lines
851 B
Nix
{ alsaLib, autoconf, automake, dssi, fetchurl, gtk, jack2
|
|
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
|
, libtool, libvorbis, pkgconfig, qt4, rubberband, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.1";
|
|
name = "qtractor-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qtractor/${name}.tar.gz";
|
|
sha256 = "09lyz1pn2dadr1ii2msyv3n13kq3mbgpcwcyfm0brm01c2fnh6wc";
|
|
};
|
|
|
|
buildInputs =
|
|
[ alsaLib autoconf automake dssi gtk jack2 ladspaH
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
|
libvorbis pkgconfig qt4 rubberband
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Audio/MIDI multi-track sequencer";
|
|
homepage = http://qtractor.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|