summary refs log tree commit diff
path: root/pkgs/applications/audio/distrho
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2015-01-25 15:47:13 +0100
committerCillian de Róiste <cillian.deroiste@gmail.com>2015-01-25 15:47:13 +0100
commit18a317c7a9cbf610e69bc0033adc0547b9897452 (patch)
treea8fd4ec900c6c08e7d5b14a31444bc7b424d6a99 /pkgs/applications/audio/distrho
parent15b6886aedabe4bf788ffa1bb63c0d8eff426ccf (diff)
downloadnixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.tar
nixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.tar.gz
nixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.tar.bz2
nixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.tar.lz
nixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.tar.xz
nixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.tar.zst
nixlib-18a317c7a9cbf610e69bc0033adc0547b9897452.zip
DISTRHO: disable the build temporarily
The repo has been split into smaller repos and it will require some more
work to get it building again and to figure out which ports and plugins
to include.
Diffstat (limited to 'pkgs/applications/audio/distrho')
-rw-r--r--pkgs/applications/audio/distrho/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/applications/audio/distrho/default.nix b/pkgs/applications/audio/distrho/default.nix
index aa3a76c3af13..ec428c7bb1f1 100644
--- a/pkgs/applications/audio/distrho/default.nix
+++ b/pkgs/applications/audio/distrho/default.nix
@@ -2,15 +2,15 @@
 , libxslt, lv2, pkgconfig, premake3, xlibs }:
 
 let
-  rev = "99efbf0b";
+  rev = "3bfddf7f";
 in
 stdenv.mkDerivation rec {
   name = "distrho-${rev}";
 
   src = fetchgit {
-    url = "https://github.com/falkTX/DISTRHO.git";
+    url = "https://github.com/DISTRHO/DISTRHO-Ports.git";
     inherit rev;
-    sha256 = "ed26a6edca19ebb8260b3dc042f69c32162e1d91179fb9d22da42ec7131936f9";
+    sha256 = "55dc52921bb757c3213da5ef6cab40909f39be3e3b41ba4c6cd66ad90bfb2e6c";
   };
 
   patchPhase = ''
@@ -50,5 +50,9 @@ stdenv.mkDerivation rec {
     '';
     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;
   };
 }