mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
python3Packages.gst-python: fix darwin build (#405195)
This commit is contained in:
commit
d44df9dfcf
1 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
|
stdenv,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchurl,
|
fetchurl,
|
||||||
fetchpatch,
|
fetchpatch,
|
||||||
|
@ -78,6 +79,10 @@ buildPythonPackage rec {
|
||||||
# https://github.com/NixOS/nixpkgs/issues/47390
|
# https://github.com/NixOS/nixpkgs/issues/47390
|
||||||
installCheckPhase = "meson test --print-errorlogs";
|
installCheckPhase = "meson test --print-errorlogs";
|
||||||
|
|
||||||
|
preCheck = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||||||
|
export DYLD_LIBRARY_PATH="${gst_all_1.gst-plugins-base}/lib"
|
||||||
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = directoryListingUpdater { };
|
updateScript = directoryListingUpdater { };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue