mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Merge pull request #42314 from jerith666/clementine-gst-plugins
clementine: add gst_plugins to buildInputs so setup hooks work
This commit is contained in:
commit
b093113c8c
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue