2011-07-31 15:04:45 +01:00
|
|
|
{ alsaLib, autoconf, automake, dssi, fetchurl, gtk, jackaudio,
|
|
|
|
ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile,
|
|
|
|
libtool, libvorbis, pkgconfig, qt4, rubberband, stdenv }:
|
2011-04-24 15:32:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-07-31 15:04:45 +01:00
|
|
|
version = "0.5.0";
|
2011-04-24 15:32:55 +01:00
|
|
|
name = "qtractor-${version}";
|
|
|
|
|
2011-07-31 15:04:45 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qtractor/${name}.tar.gz";
|
|
|
|
sha256 = "de5991d2d29b2713d73a90ab29efc24db0be68d8e9ca328062d53d229e902e89";
|
2011-04-24 15:32:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ alsaLib autoconf automake dssi gtk jackaudio ladspaH
|
2011-07-31 15:04:45 +01:00
|
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
|
|
|
libvorbis pkgconfig qt4 rubberband ];
|
2011-04-24 15:32:55 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Audio/MIDI multi-track sequencer";
|
|
|
|
homepage = http://qtractor.sourceforge.net;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|