about summary refs log tree commit diff
path: root/pkgs/applications/audio/tonelib-zoom
diff options
context:
space:
mode:
authordan4ik <6057430gu@gmail.com>2021-07-20 21:53:53 +0700
committerdan4ik <6057430gu@gmail.com>2021-07-20 21:53:53 +0700
commit0ef0c8b532fda2c72497e85221f3fc284d8f5016 (patch)
tree09dbb77c511d388676365b06e3da54adb07bdef9 /pkgs/applications/audio/tonelib-zoom
parente9092c24c42b744a49998fc835825f0b09221316 (diff)
tonelib-zoom: fixed runtimeDependencies
Diffstat (limited to 'pkgs/applications/audio/tonelib-zoom')
-rw-r--r--pkgs/applications/audio/tonelib-zoom/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/audio/tonelib-zoom/default.nix b/pkgs/applications/audio/tonelib-zoom/default.nix
index 94ef3037a7c26..2eef1f7bd6098 100644
--- a/pkgs/applications/audio/tonelib-zoom/default.nix
+++ b/pkgs/applications/audio/tonelib-zoom/default.nix
@@ -6,6 +6,7 @@
 , webkitgtk
 , libjack2
 , alsa-lib
+, curl
 }:
 
 stdenv.mkDerivation rec {
@@ -38,6 +39,10 @@ stdenv.mkDerivation rec {
     mv $out/bin/ToneLib-Zoom $out/bin/tonelib-zoom
   '';
 
+  runtimeDependencies = [
+    (lib.getLib curl)
+  ];
+
   meta = with lib; {
     description = "ToneLib Zoom – change and save all the settings in your Zoom(r) guitar pedal";
     homepage = "https://tonelib.net/";