Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
clementine: add gst_plugins to buildInputs so setup hooks work
Browse files Browse the repository at this point in the history
when the build was refactored in ef5e212, this was lost.  a4ba8c6
got most of it back, but missed the addition of gst_plugins to
buildInputs.

fixes #39960
  • Loading branch information
jerith666 committed Jun 21, 2018
1 parent 4b649a9 commit 6fcee4e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/applications/audio/clementine/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ];

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6fcee4e

Please sign in to comment.