From 6fcee4e1dde50336a7f1874dc63ec8e52b6254d9 Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Wed, 20 Jun 2018 20:52:36 -0400 Subject: 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 --- pkgs/applications/audio/clementine/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/audio/clementine') 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 -- cgit 1.4.1