mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
pyspotify: fix build on darwin
* use install_name_tool to have _spotify.so point to the correct library
This commit is contained in:
parent
2da7f32b25
commit
0f4f212adc
@ -6198,13 +6198,23 @@ pythonPackages = python.modules // rec {
|
|||||||
find -print0 | xargs -0 touch
|
find -print0 | xargs -0 touch
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||||
|
find "$out" -name _spotify.so -exec \
|
||||||
|
install_name_tool -change \
|
||||||
|
@loader_path/../Frameworks/libspotify.framework/libspotify \
|
||||||
|
${pkgs.libspotify}/lib/libspotify.dylib \
|
||||||
|
{} \;
|
||||||
|
'';
|
||||||
|
|
||||||
# There are no tests
|
# There are no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://pyspotify.mopidy.com;
|
homepage = http://pyspotify.mopidy.com;
|
||||||
description = "A Python interface to Spotify’s online music streaming service";
|
description = "A Python interface to Spotify’s online music streaming service";
|
||||||
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
license = licenses.unfree;
|
||||||
|
maintainers = with maintainers; [ lovek323 rickynils ];
|
||||||
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user