qtractor: 0.9.18 -> 0.9.19
This commit is contained in:
parent
b7eef7b55a
commit
2ae527c50e
|
@ -1,35 +1,79 @@
|
||||||
{ alsaLib, autoconf, automake, dssi, fetchurl, libjack2
|
{ alsaLib
|
||||||
, ladspaH, ladspaPlugins, liblo, libmad, libsamplerate, libsndfile
|
, aubio
|
||||||
, libtool, libvorbis, lilv, lv2, pkgconfig, qttools, qtbase, rubberband, serd
|
, cmake
|
||||||
, sord, sratom, stdenv, suil, wrapQtAppsHook }:
|
, dssi
|
||||||
|
, fetchurl
|
||||||
|
, flac
|
||||||
|
, libjack2
|
||||||
|
, ladspaH
|
||||||
|
, ladspaPlugins
|
||||||
|
, liblo
|
||||||
|
, libmad
|
||||||
|
, libsamplerate
|
||||||
|
, libsndfile
|
||||||
|
, libtool
|
||||||
|
, libvorbis
|
||||||
|
, lilv
|
||||||
|
, lv2
|
||||||
|
, mkDerivation
|
||||||
|
, opusfile
|
||||||
|
, pkg-config
|
||||||
|
, qttools
|
||||||
|
, qtbase
|
||||||
|
, rubberband
|
||||||
|
, serd
|
||||||
|
, sord
|
||||||
|
, sratom
|
||||||
|
, stdenv
|
||||||
|
, suil
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "qtractor";
|
pname = "qtractor";
|
||||||
version = "0.9.18";
|
version = "0.9.19";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "121vmygdzp37p6f93f8dbbg2m2r55j7amyiapzkqgypgn4vfdbwr";
|
sha256 = "sha256-98/trRZRvNRPEA4ASS81qp2rMevpo5TIrtsU1TYMuT0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoconf automake libtool pkgconfig qttools wrapQtAppsHook
|
cmake
|
||||||
|
libtool
|
||||||
|
pkg-config
|
||||||
|
qttools
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = [
|
||||||
[ alsaLib dssi libjack2 ladspaH
|
alsaLib
|
||||||
ladspaPlugins liblo libmad libsamplerate libsndfile libtool
|
aubio
|
||||||
libvorbis lilv lv2 qtbase rubberband serd sord sratom
|
dssi
|
||||||
suil
|
flac
|
||||||
];
|
libjack2
|
||||||
|
ladspaH
|
||||||
enableParallelBuilding = true;
|
ladspaPlugins
|
||||||
|
liblo
|
||||||
|
libmad
|
||||||
|
libsamplerate
|
||||||
|
libsndfile
|
||||||
|
libtool
|
||||||
|
libvorbis
|
||||||
|
lilv
|
||||||
|
lv2
|
||||||
|
opusfile
|
||||||
|
qtbase
|
||||||
|
rubberband
|
||||||
|
serd
|
||||||
|
sord
|
||||||
|
sratom
|
||||||
|
suil
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Audio/MIDI multi-track sequencer";
|
description = "Audio/MIDI multi-track sequencer";
|
||||||
homepage = "http://qtractor.sourceforge.net";
|
homepage = "https://qtractor.sourceforge.io";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ goibhniu ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.goibhniu ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue