about summary refs log tree commit diff
path: root/pkgs/applications/audio/clementine
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-11-10 00:52:53 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-31 01:09:25 +0100
commit760e23136acfc192fd9a51b6b3c63fbc0a0c999d (patch)
tree580b5353463a389247f8225b618091af816e329f /pkgs/applications/audio/clementine
parent01e8c649889a0a9493a38505023f7e33d98d8446 (diff)
treewide: *inputs are lists
Diffstat (limited to 'pkgs/applications/audio/clementine')
-rw-r--r--pkgs/applications/audio/clementine/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix
index 0a374c26142a1..3fdf98da325c8 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -77,7 +77,7 @@ let
     inherit src patches nativeBuildInputs postPatch;
 
     # gst_plugins needed for setup-hooks
-    buildInputs = buildInputs ++ [ makeWrapper gst_plugins ];
+    buildInputs = buildInputs ++ [ makeWrapper ] ++ gst_plugins;
 
     cmakeFlags = [ "-DUSE_SYSTEM_PROJECTM=ON" ];