update/fix distrho

This commit is contained in:
Bart Brouns 2015-05-04 19:08:14 +02:00
parent 655eed7a93
commit 171710c14a

View File

@ -2,12 +2,12 @@
, libxslt, lv2, pkgconfig, premake3, xlibs }: , libxslt, lv2, pkgconfig, premake3, xlibs }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "distrho-ports-git-2015-01-28"; name = "distrho-ports-git-2015-05-04";
src = fetchgit { src = fetchgit {
url = "https://github.com/DISTRHO/DISTRHO-Ports.git"; url = "https://github.com/DISTRHO/DISTRHO-Ports.git";
rev = "b4e2dc24802fe6804c60fcd2559a0bca46b7709c"; rev = "3f13db5dc7722ed0dcbb5256d7fac1ac9165c2d8";
sha256 = "661ff6f7cda71a8dd08cbcea3f560e99f0fc2232053cbc9a2aaba854137805c6"; sha256 = "6f740f6a8af714436ef75b858944e8122490a2faa04591a201105e84bca42fa0";
}; };
patchPhase = '' patchPhase = ''
@ -22,13 +22,11 @@ stdenv.mkDerivation rec {
buildPhase = '' buildPhase = ''
sh ./scripts/premake-update.sh linux sh ./scripts/premake-update.sh linux
make standalone
make lv2 make lv2
''; '';
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
cp bin/standalone/* $out/bin/
mkdir -p $out/lib/lv2 mkdir -p $out/lib/lv2
cp -a bin/lv2/* $out/lib/lv2/ cp -a bin/lv2/* $out/lib/lv2/
''; '';
@ -38,18 +36,14 @@ stdenv.mkDerivation rec {
description = "A collection of cross-platform audio effects and plugins"; description = "A collection of cross-platform audio effects and plugins";
longDescription = '' longDescription = ''
Includes: Includes:
3BandEQ bitmangler drowaudio-distortion drowaudio-flanger Dexed drowaudio-distortion drowaudio-distortionshaper drowaudio-flanger
drowaudio-tremolo eqinox juce_pitcher sDelay TAL-Filter drowaudio-reverb drowaudio-tremolo drumsynt EasySSP eqinox
TAL-NoiseMaker TAL-Reverb-2 TAL-Vocoder-2 ThePilgrim JuceDemoPlugin klangfalter LUFSMeter luftikus obxd pitchedDelay
Wolpertinger argotlunar capsaicin drowaudio-distortionshaper stereosourceseparation TAL-Dub-3 TAL-Filter TAL-Filter-2 TAL-NoiseMaker
drowaudio-reverb drumsynth highlife JuceDemoPlugin PingPongPan TAL-Reverb TAL-Reverb-2 TAL-Reverb-3 TAL-Vocoder-2 TheFunction
TAL-Dub-3 TAL-Filter-2 TAL-Reverb TAL-Reverb-3 TheFunction vex ThePilgrim Vex Wolpertinger
''; '';
maintainers = [ maintainers.goibhniu ]; maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux; platforms = platforms.linux;
# The old repo was removed and split into multiple repos. More
# work is required to get everything to build and work.
broken = true;
}; };
} }