summary refs log tree commit diff
path: root/pkgs/applications/audio/clementine
diff options
context:
space:
mode:
authorMatt McHenry <github@matt.mchenryfamily.org>2018-06-20 20:52:36 -0400
committerMatt McHenry <github@matt.mchenryfamily.org>2018-06-20 20:55:47 -0400
commit6fcee4e1dde50336a7f1874dc63ec8e52b6254d9 (patch)
treef33dcaac3a86321fec22d928434019675eb06e93 /pkgs/applications/audio/clementine
parent4b649a99d8461c980e7028a693387dc48033c1f7 (diff)
downloadnixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.tar
nixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.tar.gz
nixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.tar.bz2
nixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.tar.lz
nixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.tar.xz
nixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.tar.zst
nixpkgs-6fcee4e1dde50336a7f1874dc63ec8e52b6254d9.zip
clementine: add gst_plugins to buildInputs so setup hooks work
when the build was refactored in ef5e212d, this was lost.  a4ba8c65
got most of it back, but missed the addition of gst_plugins to
buildInputs.

fixes #39960
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 6379975e951..a18622e8baf 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -72,7 +72,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" ];
 
@@ -104,7 +105,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