34 lines
1021 B
Nix
34 lines
1021 B
Nix
{ alsaLib, autoconf, automake, dssi, fetchurl, libjack2
|
|
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
|
, libtool, libvorbis, lilv, lv2, pkgconfig, qttools, qtbase, rubberband, serd
|
|
, sord, sratom, stdenv, suil, wrapQtAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qtractor";
|
|
version = "0.9.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "0qlbccdxyfy0f09y6qg1xkg12fm67bf2f2c27c22cg8lzk9ang5j";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf automake libtool pkgconfig qttools wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs =
|
|
[ alsaLib dssi libjack2 ladspaH
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
|
libvorbis lilv lv2 qtbase rubberband serd sord sratom
|
|
suil
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Audio/MIDI multi-track sequencer";
|
|
homepage = http://qtractor.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|