22 lines
652 B
Nix
22 lines
652 B
Nix
{ stdenv, fetchurl, qt5, libjack2, alsaLib, liblo, lv2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "synthv1-${version}";
|
|
version = "0.7.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/synthv1/${name}.tar.gz";
|
|
sha256 = "03vnmmiyq92p2gh4zax1vg2lx6y57bsxch936pzbiwx649x53wi9";
|
|
};
|
|
|
|
buildInputs = [ qt5.qtbase qt5.qttools libjack2 alsaLib liblo lv2 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
|
|
homepage = http://synthv1.sourceforge.net/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|