summary refs log tree commit diff
path: root/pkgs/development/libraries/audio
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-20 04:22:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-20 04:22:00 -0500
commit091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62 (patch)
tree22d845a1591d1ffad4dd62f64d20f54dca055d13 /pkgs/development/libraries/audio
parenta8496595e1656318f279b2dea109b417501cd94c (diff)
downloadnixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.tar
nixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.tar.gz
nixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.tar.bz2
nixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.tar.lz
nixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.tar.xz
nixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.tar.zst
nixpkgs-091d0284f57aee8ec3b4f5f3e1f7acdba5e88e62.zip
lv2: enable on darwin
Diffstat (limited to 'pkgs/development/libraries/audio')
-rw-r--r--pkgs/development/libraries/audio/lv2/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/audio/lv2/default.nix b/pkgs/development/libraries/audio/lv2/default.nix
index bb2645beda7..dac98584646 100644
--- a/pkgs/development/libraries/audio/lv2/default.nix
+++ b/pkgs/development/libraries/audio/lv2/default.nix
@@ -12,11 +12,13 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig wafHook ];
   buildInputs = [ gtk2 libsndfile python3 ];
 
+  wafConfigureFlags = stdenv.lib.optionals stdenv.isDarwin [ "--lv2dir=${placeholder "out"}/lib/lv2" ];
+
   meta = with stdenv.lib; {
     homepage = "https://lv2plug.in";
     description = "A plugin standard for audio systems";
     license = licenses.mit;
     maintainers = [ maintainers.goibhniu ];
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 }