2019-02-25 21:13:36 +00:00
|
|
|
{ alsaLib, autoconf, automake, dssi, fetchurl, libjack2
|
2012-03-22 10:36:48 +00:00
|
|
|
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
2019-02-25 21:13:36 +00:00
|
|
|
, libtool, libvorbis, lilv, lv2, pkgconfig, qttools, qtbase, rubberband, serd
|
2019-08-07 10:34:25 +01:00
|
|
|
, sord, sratom, stdenv, suil, wrapQtAppsHook }:
|
2011-04-24 15:32:55 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-25 21:13:36 +00:00
|
|
|
pname = "qtractor";
|
2020-01-07 14:02:42 +00:00
|
|
|
version = "0.9.12";
|
2011-04-24 15:32:55 +01:00
|
|
|
|
2011-07-31 15:04:45 +01:00
|
|
|
src = fetchurl {
|
2019-02-25 21:13:36 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
2020-01-07 14:02:42 +00:00
|
|
|
sha256 = "06493sf4hr178jkvric3rmc2phh1ph2jlyh8kl9z248amq3zfnhy";
|
2011-04-24 15:32:55 +01:00
|
|
|
};
|
|
|
|
|
2019-02-25 21:13:36 +00:00
|
|
|
nativeBuildInputs = [
|
2019-08-07 10:34:25 +01:00
|
|
|
autoconf automake libtool pkgconfig qttools wrapQtAppsHook
|
2019-02-25 21:13:36 +00:00
|
|
|
];
|
2019-08-07 10:34:25 +01:00
|
|
|
|
2012-03-22 10:36:48 +00:00
|
|
|
buildInputs =
|
2019-02-25 21:13:36 +00:00
|
|
|
[ alsaLib dssi libjack2 ladspaH
|
2012-03-22 10:36:48 +00:00
|
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
2019-02-25 21:13:36 +00:00
|
|
|
libvorbis lilv lv2 qtbase rubberband serd sord sratom
|
2015-04-19 14:34:57 +01:00
|
|
|
suil
|
2012-03-22 10:36:48 +00:00
|
|
|
];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|