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