2015-06-27 00:17:52 -07:00
|
|
|
{ alsaLib, autoconf, automake, dssi, fetchurl, gtk, libjack2
|
2012-03-22 03:36:48 -07:00
|
|
|
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
2015-04-19 06:34:57 -07:00
|
|
|
, libtool, libvorbis, lilv, lv2, pkgconfig, qt4, rubberband, serd
|
|
|
|
, sord, sratom, stdenv, suil }:
|
2011-04-24 07:32:55 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-31 04:09:51 -07:00
|
|
|
version = "0.6.7";
|
2011-04-24 07:32:55 -07:00
|
|
|
name = "qtractor-${version}";
|
|
|
|
|
2011-07-31 07:04:45 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/qtractor/${name}.tar.gz";
|
2015-05-31 04:09:51 -07:00
|
|
|
sha256 = "0h5nblfkl4s412c9f02b40nb8c8jq8ypz67z2qn3hkvhx6i9yxsg";
|
2011-04-24 07:32:55 -07:00
|
|
|
};
|
|
|
|
|
2012-03-22 03:36:48 -07:00
|
|
|
buildInputs =
|
2015-06-27 00:17:52 -07:00
|
|
|
[ alsaLib autoconf automake dssi gtk libjack2 ladspaH
|
2012-03-22 03:36:48 -07:00
|
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
2015-04-19 06:34:57 -07:00
|
|
|
libvorbis lilv lv2 pkgconfig qt4 rubberband serd sord sratom
|
|
|
|
suil
|
2012-03-22 03:36:48 -07:00
|
|
|
];
|
2011-04-24 07:32:55 -07: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 ];
|
|
|
|
};
|
|
|
|
}
|