2018-01-26 13:35:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, alsaLib, fftwSinglePrec, freetype, libjack2
|
2018-07-21 01:44:44 +01:00
|
|
|
, pkgconfig, premake3, xorg, ladspa-sdk }:
|
2012-10-07 12:51:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-26 13:35:00 +00:00
|
|
|
name = "distrho-ports-unstable-2018-01-01";
|
2012-10-07 12:51:39 +01:00
|
|
|
|
2018-01-26 13:35:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DISTRHO";
|
|
|
|
repo = "DISTRHO-Ports";
|
|
|
|
rev = "b200e7409aa9f6612c4d948932f6ce6f0a087f5a";
|
|
|
|
sha256 = "0672r0a9s6skzkxpjdraziwh5k8ivrfzvi4zcpkcg3zrv2hia2vz";
|
2012-10-07 12:51:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
2013-04-07 15:23:45 +01:00
|
|
|
sed -e "s#@./scripts#sh scripts#" -i Makefile
|
2012-10-07 12:51:39 +01:00
|
|
|
'';
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-10-07 12:51:39 +01:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
alsaLib fftwSinglePrec freetype libjack2 premake3
|
2015-09-15 10:26:18 +01:00
|
|
|
xorg.libX11 xorg.libXcomposite xorg.libXcursor xorg.libXext
|
|
|
|
xorg.libXinerama xorg.libXrender ladspa-sdk
|
2012-10-07 12:51:39 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
sh ./scripts/premake-update.sh linux
|
|
|
|
make lv2
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mkdir -p $out/lib/lv2
|
|
|
|
cp -a bin/lv2/* $out/lib/lv2/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://distrho.sourceforge.net;
|
|
|
|
description = "A collection of cross-platform audio effects and plugins";
|
|
|
|
longDescription = ''
|
|
|
|
Includes:
|
2017-12-08 19:17:16 +00:00
|
|
|
Dexed drowaudio-distortion drowaudio-distortionshaper drowaudio-flanger
|
|
|
|
drowaudio-reverb drowaudio-tremolo drumsynth EasySSP eqinox HiReSam
|
|
|
|
JuceDemoPlugin KlangFalter LUFSMeter LUFSMeterMulti Luftikus Obxd
|
|
|
|
PitchedDelay ReFine StereoSourceSeparation TAL-Dub-3 TAL-Filter
|
|
|
|
TAL-Filter-2 TAL-NoiseMaker TAL-Reverb TAL-Reverb-2 TAL-Reverb-3
|
|
|
|
TAL-Vocoder-2 TheFunction ThePilgrim Vex Wolpertinger
|
2012-10-07 12:51:39 +01:00
|
|
|
'';
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|