summary refs log tree commit diff
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
parent13e41106500d396a7326d00abdfaf8fa725331f9 (diff)
parent6fcee4e1dde50336a7f1874dc63ec8e52b6254d9 (diff)
downloadnixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar
nixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.gz
nixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.bz2
nixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.lz
nixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.xz
nixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.tar.zst
nixlib-b093113c8cfcc3c2c5e6dd0a6fa69efe61dacca1.zip
Merge pull request #42314 from jerith666/clementine-gst-plugins
clementine: add gst_plugins to buildInputs so setup hooks work
-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 611828753e46..a28125d24d4f 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