2017-03-02 13:51:01 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, qt5, libjack2, alsaLib, liblo, lv2 }:
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "synthv1";
|
2019-07-20 23:02:38 +02:00
|
|
|
version = "0.9.9";
|
2013-03-06 01:06:16 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/synthv1/${pname}-${version}.tar.gz";
|
2019-07-20 23:02:38 +02:00
|
|
|
sha256 = "0cvamqzg74qfr7kzk3skimskmv0j3d1rmmpbpsmfcrg8srvyx9r2";
|
2013-03-06 01:06:16 +01:00
|
|
|
};
|
|
|
|
|
2016-11-01 02:56:18 +01:00
|
|
|
buildInputs = [ qt5.qtbase qt5.qttools libjack2 alsaLib liblo lv2 ];
|
2013-03-06 01:06:16 +01:00
|
|
|
|
2017-03-02 13:51:01 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2013-03-06 01:06:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
|
2018-11-25 00:36:59 +01:00
|
|
|
homepage = https://synthv1.sourceforge.io/;
|
2013-03-06 01:06:16 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
2015-06-27 09:17:52 +02:00
|
|
|
}
|