464a05818e
svn path=/nixpkgs/trunk/; revision=33361
28 lines
859 B
Nix
28 lines
859 B
Nix
{ alsaLib, autoconf, automake, dssi, fetchurl, gtk, jackaudio
|
|
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
|
, libtool, libvorbis, pkgconfig, qt4, rubberband, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.4";
|
|
name = "qtractor-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qtractor/${name}.tar.gz";
|
|
sha256 = "08vnvjl4w6z49s5shnip0qlwib0gwixw9wrqbazkh62i328fa05l";
|
|
};
|
|
|
|
buildInputs =
|
|
[ alsaLib autoconf automake dssi gtk jackaudio ladspaH
|
|
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
|
libvorbis pkgconfig qt4 rubberband
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Audio/MIDI multi-track sequencer";
|
|
homepage = http://qtractor.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|