summary refs log tree commit diff
path: root/pkgs/applications/audio/distrho
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetopon.nl>2015-05-04 19:08:14 +0200
committerBart Brouns <bart@magnetopon.nl>2015-05-04 19:08:14 +0200
commit171710c14abad8a3c87c99f3bcb879cc7e16c352 (patch)
tree8b8c839d84cbece0c8713d621a9acacf8eb543e2 /pkgs/applications/audio/distrho
parent655eed7a9309d909914d32867cecf6bada1dc3db (diff)
downloadnixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.tar
nixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.tar.gz
nixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.tar.bz2
nixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.tar.lz
nixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.tar.xz
nixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.tar.zst
nixlib-171710c14abad8a3c87c99f3bcb879cc7e16c352.zip
update/fix distrho
Diffstat (limited to 'pkgs/applications/audio/distrho')
-rw-r--r--pkgs/applications/audio/distrho/default.nix24
1 files changed, 9 insertions, 15 deletions
diff --git a/pkgs/applications/audio/distrho/default.nix b/pkgs/applications/audio/distrho/default.nix
index a8c710f2099e..e6d5971b6fd2 100644
--- a/pkgs/applications/audio/distrho/default.nix
+++ b/pkgs/applications/audio/distrho/default.nix
@@ -2,12 +2,12 @@
 , libxslt, lv2, pkgconfig, premake3, xlibs }:
 
 stdenv.mkDerivation rec {
-  name = "distrho-ports-git-2015-01-28";
+  name = "distrho-ports-git-2015-05-04";
 
   src = fetchgit {
     url = "https://github.com/DISTRHO/DISTRHO-Ports.git";
-    rev = "b4e2dc24802fe6804c60fcd2559a0bca46b7709c";
-    sha256 = "661ff6f7cda71a8dd08cbcea3f560e99f0fc2232053cbc9a2aaba854137805c6";
+    rev = "3f13db5dc7722ed0dcbb5256d7fac1ac9165c2d8";
+    sha256 = "6f740f6a8af714436ef75b858944e8122490a2faa04591a201105e84bca42fa0";
   };
 
   patchPhase = ''
@@ -22,13 +22,11 @@ stdenv.mkDerivation rec {
 
   buildPhase = ''
     sh ./scripts/premake-update.sh linux
-    make standalone
     make lv2
   '';
 
   installPhase = ''
     mkdir -p $out/bin
-    cp bin/standalone/* $out/bin/
     mkdir -p $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";
     longDescription = ''
       Includes:
-      3BandEQ bitmangler drowaudio-distortion drowaudio-flanger
-      drowaudio-tremolo eqinox juce_pitcher sDelay TAL-Filter
-      TAL-NoiseMaker TAL-Reverb-2 TAL-Vocoder-2 ThePilgrim
-      Wolpertinger argotlunar capsaicin drowaudio-distortionshaper
-      drowaudio-reverb drumsynth highlife JuceDemoPlugin PingPongPan
-      TAL-Dub-3 TAL-Filter-2 TAL-Reverb TAL-Reverb-3 TheFunction vex
+      Dexed  drowaudio-distortion drowaudio-distortionshaper drowaudio-flanger
+      drowaudio-reverb drowaudio-tremolo drumsynt EasySSP  eqinox
+      JuceDemoPlugin klangfalter LUFSMeter luftikus obxd pitchedDelay
+      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
     '';
     maintainers = [ maintainers.goibhniu ];
     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;
   };
 }