62d0a320b3
This reverts commit bdb77826d98544ab37741f740dd3516023924b27. Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'. Q: What's the difference between Jack1 and Jack2? A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
28 lines
851 B
Nix
28 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 ];
|
|
};
|
|
}
|