62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
21 lines
No EOL
596 B
Nix
21 lines
No EOL
596 B
Nix
{ stdenv, fetchurl, qt4, jack2, lv2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "synthv1-${version}";
|
|
version = "0.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/synthv1/${name}.tar.gz";
|
|
sha256 = "1r4fszbzwd0yfcch0mcsmh7781zw1317hiljn85w79721fs2m8hc";
|
|
};
|
|
|
|
buildInputs = [ qt4 jack2 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 ];
|
|
};
|
|
} |