summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-02-13 10:25:05 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-03-17 08:53:24 -0700
commitbeefeab222118fe1c88afb6e8260eab71406fae7 (patch)
treea564a94c93f780f9fb1d3928a166d01fa41480fa /pkgs/development/libraries
parentc586cccd7cb90b479ecb7bc10585968bc3bda5bb (diff)
downloadnixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.tar
nixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.tar.gz
nixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.tar.bz2
nixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.tar.lz
nixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.tar.xz
nixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.tar.zst
nixpkgs-beefeab222118fe1c88afb6e8260eab71406fae7.zip
lv2: drop GTK 2 dependency
gtk2 is optional and only used for some example plug-ins. In particular,
removing `gtk2` disables building UI module for `$out/lib/lv2/eg-sampler.lv2`
(`<http://lv2plug.in/plugins/eg-sampler#ui>`) and the whole
`$out/lib/lv2/eg-scope.lv2` (`<http://lv2plug.in/plugins/eg-scope>`).
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/audio/lv2/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/development/libraries/audio/lv2/default.nix b/pkgs/development/libraries/audio/lv2/default.nix
index d905b499f61..3a093ee3def 100644
--- a/pkgs/development/libraries/audio/lv2/default.nix
+++ b/pkgs/development/libraries/audio/lv2/default.nix
@@ -1,7 +1,6 @@
 { stdenv
 , lib
 , fetchurl
-, gtk2
 , libsndfile
 , pkg-config
 , python3
@@ -23,7 +22,6 @@ stdenv.mkDerivation rec {
   ];
 
   buildInputs = [
-    gtk2
     libsndfile
     python3
   ];