summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorRaghav Sood <r@raghavsood.com>2020-12-04 05:37:48 +0000
committerGitHub <noreply@github.com>2020-12-04 05:37:48 +0000
commit3a3e8e6a8ba4478803174c65b569839c7ad66673 (patch)
treebb0c32fd8b75eedc5ba7cd4883eaf4249d4471ba /pkgs/applications/audio
parentfc4392903165ec7e59e3e0e757a16f50e3fd71fc (diff)
parent39373645eddbf4bce3d35ac1d425acb54d382b5e (diff)
downloadnixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.tar
nixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.tar.gz
nixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.tar.bz2
nixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.tar.lz
nixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.tar.xz
nixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.tar.zst
nixpkgs-3a3e8e6a8ba4478803174c65b569839c7ad66673.zip
Merge pull request #105242 from RaghavSood/microhttpd/version
libmicrohttpd dependents: fix build
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/faust/faustlive.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/faust/faustlive.nix b/pkgs/applications/audio/faust/faustlive.nix
index 00682b13bef..907ea3ed7ca 100644
--- a/pkgs/applications/audio/faust/faustlive.nix
+++ b/pkgs/applications/audio/faust/faustlive.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub
-, llvm, qt48Full, qrencode, libmicrohttpd, libjack2, alsaLib, faust, curl
+, llvm, qt48Full, qrencode, libmicrohttpd_0_9_70, libjack2, alsaLib, faust, curl
 , bc, coreutils, which, libsndfile, pkg-config
 }:
 
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    llvm qt48Full qrencode libmicrohttpd libjack2 alsaLib faust curl
+    llvm qt48Full qrencode libmicrohttpd_0_9_70 libjack2 alsaLib faust curl
     bc coreutils which libsndfile pkg-config
   ];