2013-03-06 01:06:16 +01:00
|
|
|
{ stdenv, fetchurl, qt4, jackaudio, lv2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "synthv1-${version}";
|
2014-01-18 21:24:35 +01:00
|
|
|
version = "0.3.6";
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/synthv1/${name}.tar.gz";
|
2014-01-18 21:24:35 +01:00
|
|
|
sha256 = "1xj4dk1g546f9fv2c4i7g3f1axrxfrxzk9w1nidhj3686j79nyry";
|
2013-03-06 01:06:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ qt4 jackaudio 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 ];
|
|
|
|
};
|
|
|
|
}
|