summary refs log tree commit diff
path: root/pkgs/applications/audio/clementine
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-10-18 01:46:46 +0200
committerGitHub <noreply@github.com>2018-10-18 01:46:46 +0200
commitb093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1 (patch)
treedfdc68640e0b4811d22cee31e7146723d891ff82 /pkgs/applications/audio/clementine
parent13e41106500d396a7326d00abdfaf8fa725331f9 (diff)
parent6fcee4e1dde50336a7f1874dc63ec8e52b6254d9 (diff)
downloadnixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar
nixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.gz
nixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.bz2
nixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.lz
nixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.xz
nixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.zst
nixpkgs-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.zip
Merge pull request #42314 from jerith666/clementine-gst-plugins
clementine: add gst_plugins to buildInputs so setup hooks work
Diffstat (limited to 'pkgs/applications/audio/clementine')
-rw-r--r--pkgs/applications/audio/clementine/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix
index 611828753e4..a28125d24d4 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -69,7 +69,8 @@ let
     name = "clementine-free-${version}";
     inherit src patches nativeBuildInputs postPatch;
 
-    buildInputs = buildInputs ++ [ makeWrapper ];
+    # gst_plugins needed for setup-hooks
+    buildInputs = buildInputs ++ [ makeWrapper gst_plugins ];
 
     cmakeFlags = [ "-DUSE_SYSTEM_PROJECTM=ON" ];
 
@@ -101,7 +102,7 @@ let
       ./clementine-spotify-blob.patch
     ];
 
-    buildInputs = buildInputs ++ [ libspotify makeWrapper gst_plugins ];
+    buildInputs = buildInputs ++ [ libspotify makeWrapper ];
     # Only build and install the Spotify blob
     preBuild = ''
       cd ext/clementine-spotifyblob