2012-03-22 10:36:48 +00: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 {
|
2014-01-18 20:21:54 +00:00
|
|
|
version = "0.5.12";
|
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";
|
2014-01-18 20:21:54 +00:00
|
|
|
sha256 = "0yf2p9l3hj8pd550v3rbbjqkvxnvn8p6nsnm4aj2v5q4mgg2c8cc";
|
2011-04-24 15:32:55 +01:00
|
|
|
};
|
|
|
|
|
2012-03-22 10:36:48 +00:00
|
|
|
buildInputs =
|
|
|
|
[ alsaLib autoconf automake dssi gtk jackaudio ladspaH
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|