2019-11-30 10:44:51 -08:00
|
|
|
{ stdenv, fetchFromGitHub , xorg, freetype, alsaLib, curl, libjack2
|
|
|
|
, lv2, pkgconfig, libGLU, libGL }:
|
2015-11-17 09:24:39 -08:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2017-07-11 07:37:06 -07:00
|
|
|
version = "0.9.0";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "helm";
|
2016-02-25 02:29:03 -08:00
|
|
|
|
2016-10-31 18:28:34 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mtytel";
|
|
|
|
repo = "helm";
|
2017-07-11 07:37:06 -07:00
|
|
|
rev = "927d2ed27f71a735c3ff2a1226ce3129d1544e7e";
|
|
|
|
sha256 = "17ys2vvhncx9i3ydg3xwgz1d3gqv4yr5mqi7vr0i0ca6nad6x3d4";
|
2016-10-31 18:28:34 -07:00
|
|
|
};
|
2015-11-17 09:24:39 -08:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
xorg.libX11 xorg.libXcomposite xorg.libXcursor xorg.libXext
|
|
|
|
xorg.libXinerama xorg.libXrender xorg.libXrandr
|
2019-11-10 08:44:34 -08:00
|
|
|
freetype alsaLib curl libjack2 pkgconfig libGLU libGL lv2
|
2015-11-17 09:24:39 -08:00
|
|
|
];
|
|
|
|
|
2016-10-31 18:28:34 -07:00
|
|
|
CXXFLAGS = "-DHAVE_LROUND";
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's|usr/||g' Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make lv2
|
2017-07-11 07:37:06 -07:00
|
|
|
make standalone
|
2016-10-31 18:28:34 -07:00
|
|
|
'';
|
|
|
|
|
2015-11-17 09:24:39 -08:00
|
|
|
installPhase = ''
|
2016-10-31 18:28:34 -07:00
|
|
|
make DESTDIR="$out" install
|
2015-11-17 09:24:39 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://tytel.org/helm";
|
2015-11-17 09:24:39 -08:00
|
|
|
description = "A free, cross-platform, polyphonic synthesizer";
|
|
|
|
longDescription = ''
|
|
|
|
A free, cross-platform, polyphonic synthesizer.
|
|
|
|
Features:
|
|
|
|
32 voice polyphony
|
|
|
|
Interactive visual interface
|
|
|
|
Powerful modulation system with live visual feedback
|
|
|
|
Dual oscillators with cross modulation and up to 15 oscillators each
|
|
|
|
Unison and Harmony mode for oscillators
|
|
|
|
Oscillator feedback and saturation for waveshaping
|
|
|
|
12 different waveforms
|
|
|
|
7 filter types with keytracking
|
|
|
|
2 monophonic and 1 polyphonic LFO
|
|
|
|
Step sequencer
|
|
|
|
Lots of modulation sources including polyphonic aftertouch
|
|
|
|
Simple arpeggiator
|
|
|
|
Effects: Formant filter, stutter, delay
|
|
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|