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";
|
2020-03-28 13:21:30 +00:00
|
|
|
version = "0.9.13";
|
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";
|
2020-03-28 13:21:30 +00:00
|
|
|
sha256 = "0bb48myvgvqcibwm68qhd4852pjr2g19rasf059a799d1hzgfq3l";
|
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";
|
2020-03-28 13:21:30 +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
|
|
|
}
|