clementine: add gst_plugins to buildInputs so setup hooks work
when the build was refactored inef5e212d
, this was lost.a4ba8c65
got most of it back, but missed the addition of gst_plugins to buildInputs. fixes #39960
This commit is contained in:
parent
4b649a99d8
commit
6fcee4e1dd
@ -72,7 +72,8 @@ let
|
|||||||
name = "clementine-free-${version}";
|
name = "clementine-free-${version}";
|
||||||
inherit src patches nativeBuildInputs postPatch;
|
inherit src patches nativeBuildInputs postPatch;
|
||||||
|
|
||||||
buildInputs = buildInputs ++ [ makeWrapper ];
|
# gst_plugins needed for setup-hooks
|
||||||
|
buildInputs = buildInputs ++ [ makeWrapper gst_plugins ];
|
||||||
|
|
||||||
cmakeFlags = [ "-DUSE_SYSTEM_PROJECTM=ON" ];
|
cmakeFlags = [ "-DUSE_SYSTEM_PROJECTM=ON" ];
|
||||||
|
|
||||||
@ -104,7 +105,7 @@ let
|
|||||||
./clementine-spotify-blob.patch
|
./clementine-spotify-blob.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = buildInputs ++ [ libspotify makeWrapper gst_plugins ];
|
buildInputs = buildInputs ++ [ libspotify makeWrapper ];
|
||||||
# Only build and install the Spotify blob
|
# Only build and install the Spotify blob
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
cd ext/clementine-spotifyblob
|
cd ext/clementine-spotifyblob
|
||||||
|
Loading…
Reference in New Issue
Block a user