2018-01-26 13:35:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, alsaLib, fftwSinglePrec, freetype, libjack2
|
2018-11-27 07:32:11 +00:00
|
|
|
, pkgconfig, ladspa-sdk, premake3
|
|
|
|
, libX11, libXcomposite, libXcursor, libXext, libXinerama, libXrender
|
|
|
|
}:
|
2012-10-07 11:51:39 +00:00
|
|
|
|
2018-11-27 07:32:11 +00:00
|
|
|
let
|
|
|
|
premakeos = if stdenv.hostPlatform.isDarwin then "osx"
|
|
|
|
else if stdenv.hostPlatform.isWindows then "mingw"
|
|
|
|
else "linux";
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "distrho-ports";
|
2018-08-24 07:38:25 +00:00
|
|
|
version = "2018-04-16";
|
2012-10-07 11:51:39 +00:00
|
|
|
|
2018-01-26 13:35:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DISTRHO";
|
|
|
|
repo = "DISTRHO-Ports";
|
2018-08-24 07:38:25 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "0l4zwl4mli8jzch32a1fh7c88r9q17xnkxsdw17ds5hadnxlk12v";
|
2012-10-07 11:51:39 +00:00
|
|
|
};
|
|
|
|
|
2018-11-27 07:32:11 +00:00
|
|
|
configurePhase = ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
|
|
|
sh ./scripts/premake-update.sh ${premakeos}
|
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
2012-10-07 11:51:39 +00:00
|
|
|
patchPhase = ''
|
2013-04-07 14:23:45 +00:00
|
|
|
sed -e "s#@./scripts#sh scripts#" -i Makefile
|
2012-10-07 11:51:39 +00:00
|
|
|
'';
|
|
|
|
|
2018-11-27 07:32:11 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig premake3 ];
|
2012-10-07 11:51:39 +00:00
|
|
|
buildInputs = [
|
2018-11-27 07:32:11 +00:00
|
|
|
alsaLib fftwSinglePrec freetype libjack2
|
|
|
|
libX11 libXcomposite libXcursor libXext
|
|
|
|
libXinerama libXrender ladspa-sdk
|
2012-10-07 11:51:39 +00:00
|
|
|
];
|
|
|
|
|
2018-11-27 07:32:11 +00:00
|
|
|
makeFlags = "PREFIX=$(out)";
|
2012-10-07 11:51:39 +00:00
|
|
|
|
|
|
|
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 11:51:39 +00:00
|
|
|
'';
|
2018-09-01 11:32:04 +00:00
|
|
|
license = with licenses; [ gpl2 gpl3 gpl2Plus lgpl3 mit ];
|
2012-10-07 11:51:39 +00:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2018-08-24 07:38:25 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2012-10-07 11:51:39 +00:00
|
|
|
};
|
|
|
|
}
|